History log of /freebsd-10.1-release/lib/librt/timer.c
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
# 272461 02-Oct-2014 gjb

Copy stable/10@r272459 to releng/10.1 as part of
the 10.1-RELEASE process.

Approved by: re (implicit)
Sponsored by: The FreeBSD Foundation

# 256281 10-Oct-2013 gjb

Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.

Approved by: re (implicit)
Sponsored by: The FreeBSD Foundation


# 227661 18-Nov-2011 kib

Free unused allocation on error.

Reported by: slonoman2011 yandex ru
MFC after: 1 week


# 156414 07-Mar-2006 davidxu

Set SNF_SYNC flag for timer, as the timer notification should be
serialized.


# 156383 07-Mar-2006 davidxu

1. Always call user callback function in newly created thread, it seems
POSIX implies that the user callback function must be executed in clean
environment.
2. Use newly introduced pthread stubs in libc.


# 156267 03-Mar-2006 davidxu

Use a thread pool to process notification if sigev_notify_attributes
is default and caller does not require dedicated thread. timer needs
a dedicated thread to maintain overrun count correctly in notification
context. mqueue and aio can use thread pool to do notification
concurrently, the thread pool has lifecycle control, some threads will
exit if they have idled for a while.


# 156265 03-Mar-2006 davidxu

save sigev_node pointer.


# 156136 01-Mar-2006 davidxu

Bring in my initial version of POSIX realtime extension library.
Current the library implements mqueue, timer and aio with SIGEV_THREAD
notification supported.

Earlier version reviewed by: deischen