Welcome to mirror list, hosted at ThFree Co, Russian Federation.

mq_notify.c « linux « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fd4606bd4744a88f7fdde82faffd883b4dac12bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* 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)