mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-22 19:00:07 +00:00
* rt/mqueue.h (mq_timedreceive, mq_timedsend): Fix nonnull argument
numbers. 2007-08-03 Jakub Jelinek <jakub@redhat.com> * rt/mqueue.h (mq_timedreceive, mq_timedsend): Fix nonnull argument numbers.
This commit is contained in:
parent
cbf0489bcf
commit
754980e493
@ -1,3 +1,8 @@
|
||||
2007-08-03 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
* rt/mqueue.h (mq_timedreceive, mq_timedsend): Fix nonnull argument
|
||||
numbers.
|
||||
|
||||
2007-08-02 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* io/Makefile (aux): Add have_o_cloexec.
|
||||
|
@ -80,14 +80,14 @@ extern ssize_t mq_timedreceive (mqd_t __mqdes, char *__restrict __msg_ptr,
|
||||
size_t __msg_len,
|
||||
unsigned int *__restrict __msg_prio,
|
||||
__const struct timespec *__restrict __abs_timeout)
|
||||
__nonnull ((1, 4));
|
||||
__nonnull ((2, 5));
|
||||
|
||||
/* Add message pointed by MSG_PTR to message queue MQDES, stop blocking
|
||||
on full message queue if ABS_TIMEOUT expires. */
|
||||
extern int mq_timedsend (mqd_t __mqdes, __const char *__msg_ptr,
|
||||
size_t __msg_len, unsigned int __msg_prio,
|
||||
__const struct timespec *__abs_timeout)
|
||||
__nonnull ((1, 4));
|
||||
__nonnull ((2, 5));
|
||||
#endif
|
||||
|
||||
__END_DECLS
|
||||
|
Loading…
Reference in New Issue
Block a user