source: asp3_tinet_ecnl_rx/trunk/musl-1.1.18/src/mq/mq_open.c@ 337

Last change on this file since 337 was 337, checked in by coas-nagasima, 6 years ago

ASP3版ECNLを追加

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-csrc;charset=UTF-8
File size: 406 bytes
Line 
1#include <mqueue.h>
2#include <fcntl.h>
3#include <stdarg.h>
4#include "syscall.h"
5
6mqd_t mq_open(const char *name, int flags, ...)
7{
8 mode_t mode = 0;
9 struct mq_attr *attr = 0;
10 if (*name == '/') name++;
11 if (flags & O_CREAT) {
12 va_list ap;
13 va_start(ap, flags);
14 mode = va_arg(ap, mode_t);
15 attr = va_arg(ap, struct mq_attr *);
16 va_end(ap);
17 }
18 return syscall(SYS_mq_open, name, flags, mode, attr);
19}
Note: See TracBrowser for help on using the repository browser.