mq_notify.c

来自「用于嵌入式Linux系统的标准C的库函数」· C语言 代码 · 共 23 行

C
23
字号
/* 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)      

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?