diff options
author | Austin Foxley <austinf@cetoncorp.com> | 2009-10-17 14:42:01 -0700 |
---|---|---|
committer | Austin Foxley <austinf@cetoncorp.com> | 2009-10-17 14:42:01 -0700 |
commit | a202cf6f119f41532b60ad28bc48746b535fd34c (patch) | |
tree | 03e96b87732058543d681803a829ee02238e5ab9 /librt/mq_timedsend.S | |
parent | 93e6d12ea06dc489cde0d96f78d623410703d33e (diff) |
librt additions that are now possible with nptl
* clock_getcpuclockid, clock_gettime, clock_nanosleep, mq_receive,
mq_send, mq_timedreceive, mq_timedsend, _SC_MONOTONIC_CLOCK
Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
Diffstat (limited to 'librt/mq_timedsend.S')
-rw-r--r-- | librt/mq_timedsend.S | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/librt/mq_timedsend.S b/librt/mq_timedsend.S new file mode 100644 index 000000000..67758a3b9 --- /dev/null +++ b/librt/mq_timedsend.S @@ -0,0 +1,10 @@ +#include <sysdep-cancel.h> +#ifndef __NR_mq_timedsend +#error Missing definition of NR_timedsend needed for cancellation. +#endif +PSEUDO (__mq_timedsend, mq_timedsend, 5) +ret +PSEUDO_END(__mq_timedsend) +librt_hidden_def (__mq_timedsend) +weak_alias (__mq_timedsend, mq_timedsend) +librt_hidden_weak (mq_timedsend) |