mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-15 11:00:04 +08:00
ef467338e4
* libc/sys/linux/Makefile.am: Add support for message queue routines, ipc routines, and ftok. * libc/sys/linux/Makefile.in: Regenerated. * libc/sys/linux/ftok.c: New file. * libc/sys/linux/ipc.c: Ditto. * libc/sys/linux/mq_close.c: Ditto. * libc/sys/linux/mq_getattr.c: Ditto. * libc/sys/linux/mq_notify.c: Ditto. * libc/sys/linux/mq_open.c: Ditto. * libc/sys/linux/mq_receive.c: Ditto. * libc/sys/linux/mq_send.c: Ditto. * libc/sys/linux/mq_setattr.c: Ditto. * libc/sys/linux/mq_unlink.c: Ditto. * libc/sys/linux/mqlocal.h: Ditto. * libc/sys/linux/include/mqueue.h: Ditto. * libc/sys/linux/sys/types.h: Define __gid_t_defined and __uid_t_defined.
23 lines
290 B
C
23 lines
290 B
C
/* Copyright 2002, Red Hat Inc. */
|
|
|
|
#include <mqueue.h>
|
|
#include <errno.h>
|
|
#include <machine/weakalias.h>
|
|
|
|
#include "mqlocal.h"
|
|
|
|
int
|
|
__libc_mq_notify (mqd_t msgid, const struct sigevent *notification)
|
|
{
|
|
errno = ENOSYS;
|
|
return -1;
|
|
}
|
|
weak_alias (__libc_mq_notify, mq_notify)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|