您当前的位置:首页 > IT编程 > C++
| C语言 | Java | VB | VC | python | Android | TensorFlow | C++ | oracle | 学术与代码 | cnn卷积神经网络 | gnn | 图像修复 | Keras | 数据集 | Neo4j | 自然语言处理 | 深度学习 | 医学CAD | 医学影像 | 超参数 | pointnet | pytorch | 异常检测 | Transformers | 情感分类 | 知识图谱 |

自学教程:C++ uv__nonblock函数代码示例

51自学网 2021-06-03 09:27:02
  C++
这篇教程C++ uv__nonblock函数代码示例写得很实用,希望能帮到您。

本文整理汇总了C++中uv__nonblock函数的典型用法代码示例。如果您正苦于以下问题:C++ uv__nonblock函数的具体用法?C++ uv__nonblock怎么用?C++ uv__nonblock使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。

在下文中一共展示了uv__nonblock函数的30个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C++代码示例。

示例1: uv__make_pipe

int uv__make_pipe(int fds[2], int flags) {#if __linux__  int fl;  fl = UV__O_CLOEXEC;  if (flags & UV__F_NONBLOCK)    fl |= UV__O_NONBLOCK;  if (uv__pipe2(fds, fl) == 0)    return 0;  if (errno != ENOSYS)    return -1;#endif  if (pipe(fds))    return -1;  uv__cloexec(fds[0], 1);  uv__cloexec(fds[1], 1);  if (flags & UV__F_NONBLOCK) {    uv__nonblock(fds[0], 1);    uv__nonblock(fds[1], 1);  }  return 0;}
开发者ID:InfamousNugz,项目名称:dnscrypt-proxy,代码行数:29,


示例2: uv__make_pipe

static int uv__make_pipe(int fds[2], int flags) {#if HAVE_SYS_PIPE2  int fl;  fl = O_CLOEXEC;  if (flags & UV__F_NONBLOCK)    fl |= O_NONBLOCK;  if (sys_pipe2(fds, fl) == 0)    return 0;  if (errno != ENOSYS)    return -1;  /* errno == ENOSYS so maybe the kernel headers lied about   * the availability of pipe2(). This can happen if people   * build libuv against newer kernel headers than the kernel   * they actually run the software on.   */#endif  if (pipe(fds))    return -1;  uv__cloexec(fds[0], 1);  uv__cloexec(fds[1], 1);  if (flags & UV__F_NONBLOCK) {    uv__nonblock(fds[0], 1);    uv__nonblock(fds[1], 1);  }  return 0;}
开发者ID:SerenaPark,项目名称:obilink,代码行数:35,


示例3: uv__make_pipe

int uv__make_pipe(int fds[2], int flags) {#if defined(__linux__)  static int no_pipe2;  if (no_pipe2)    goto skip;  if (uv__pipe2(fds, flags | UV__O_CLOEXEC) == 0)    return 0;  if (errno != ENOSYS)    return -errno;  no_pipe2 = 1;skip:#endif  if (pipe(fds))    return -errno;  uv__cloexec(fds[0], 1);  uv__cloexec(fds[1], 1);  if (flags & UV__F_NONBLOCK) {    uv__nonblock(fds[0], 1);    uv__nonblock(fds[1], 1);  }  return 0;}
开发者ID:maxtaco,项目名称:libuv,代码行数:31,


示例4: uv__make_socketpair

static int uv__make_socketpair(int fds[2], int flags) {#ifdef SOCK_NONBLOCK  int fl;  fl = SOCK_CLOEXEC;  if (flags & UV__F_NONBLOCK)    fl |= SOCK_NONBLOCK;  if (socketpair(AF_UNIX, SOCK_STREAM|fl, 0, fds) == 0)    return 0;  if (errno != EINVAL)    return -1;  /* errno == EINVAL so maybe the kernel headers lied about   * the availability of SOCK_NONBLOCK. This can happen if people   * build libuv against newer kernel headers than the kernel   * they actually run the software on.   */#endif  if (socketpair(AF_UNIX, SOCK_STREAM, 0, fds))    return -1;  uv__cloexec(fds[0], 1);  uv__cloexec(fds[1], 1);  if (flags & UV__F_NONBLOCK) {    uv__nonblock(fds[0], 1);    uv__nonblock(fds[1], 1);  }  return 0;}
开发者ID:SerenaPark,项目名称:obilink,代码行数:35,


示例5: uv__make_socketpair

int uv__make_socketpair(int fds[2], int flags) {#if defined(__linux__)  static int no_cloexec;  if (no_cloexec)    goto skip;  if (socketpair(AF_UNIX, SOCK_STREAM | UV__SOCK_CLOEXEC | flags, 0, fds) == 0)    return 0;  /* Retry on EINVAL, it means SOCK_CLOEXEC is not supported.   * Anything else is a genuine error.   */  if (errno != EINVAL)    return -errno;  no_cloexec = 1;skip:#endif  if (socketpair(AF_UNIX, SOCK_STREAM, 0, fds))    return -errno;  uv__cloexec(fds[0], 1);  uv__cloexec(fds[1], 1);  if (flags & UV__F_NONBLOCK) {    uv__nonblock(fds[0], 1);    uv__nonblock(fds[1], 1);  }  return 0;}
开发者ID:maxtaco,项目名称:libuv,代码行数:34,


示例6: uv__socket

/* Open a socket in non-blocking close-on-exec mode, atomically if possible. */int uv__socket(int domain, int type, int protocol) {  int sockfd;#if defined(SOCK_NONBLOCK) && defined(SOCK_CLOEXEC)  sockfd = socket(domain, type | SOCK_NONBLOCK | SOCK_CLOEXEC, protocol);  if (sockfd != -1)    goto out;  if (errno != EINVAL)    goto out;#endif  sockfd = socket(domain, type, protocol);  if (sockfd == -1)    goto out;  if (uv__nonblock(sockfd, 1) || uv__cloexec(sockfd, 1)) {    close(sockfd);    sockfd = -1;  }#if defined(SO_NOSIGPIPE)  {    int on = 1;    setsockopt(sockfd, SOL_SOCKET, SO_NOSIGPIPE, &on, sizeof(on));  }#endifout:  return sockfd;}
开发者ID:anguskwan,项目名称:libuv,代码行数:34,


示例7: uv__process_open_stream

static int uv__process_open_stream(uv_stdio_container_t* container,                                   int pipefds[2],                                   int writable) {  int flags;  if (!(container->flags & UV_CREATE_PIPE) || pipefds[0] < 0)    return 0;  if (uv__close(pipefds[1]))    if (errno != EINTR && errno != EINPROGRESS)      abort();  pipefds[1] = -1;  uv__nonblock(pipefds[0], 1);  if (container->data.stream->type == UV_NAMED_PIPE &&      ((uv_pipe_t*)container->data.stream)->ipc)    flags = UV_STREAM_READABLE | UV_STREAM_WRITABLE;  else if (writable)    flags = UV_STREAM_WRITABLE;  else    flags = UV_STREAM_READABLE;  return uv__stream_open(container->data.stream, pipefds[0], flags);}
开发者ID:maxtaco,项目名称:libuv,代码行数:25,


示例8: uv_pipe_open

int uv_pipe_open(uv_pipe_t* handle, uv_os_fd_t fd) {  int flags;  int mode;  int err;  flags = 0;  if (uv__fd_exists(handle->loop, fd))    return UV_EEXIST;  do    mode = fcntl(fd, F_GETFL);  while (mode == -1 && errno == EINTR);  if (mode == -1)    return UV__ERR(errno); /* according to docs, must be EBADF */  err = uv__nonblock(fd, 1);  if (err)    return err;#if defined(__APPLE__)  err = uv__stream_try_select((uv_stream_t*) handle, &fd);  if (err)    return err;#endif /* defined(__APPLE__) */  mode &= O_ACCMODE;  if (mode != O_WRONLY)    flags |= UV_HANDLE_READABLE;  if (mode != O_RDONLY)    flags |= UV_HANDLE_WRITABLE;  return uv__stream_open((uv_stream_t*)handle, fd, flags);}
开发者ID:JuliaLang,项目名称:libuv,代码行数:34,


示例9: new_inotify_fd

static int new_inotify_fd(void) {  int err;  int fd;  fd = uv__inotify_init1(UV__IN_NONBLOCK | UV__IN_CLOEXEC);  if (fd != -1)    return fd;  if (errno != ENOSYS)    return -errno;  fd = uv__inotify_init();  if (fd == -1)    return -errno;  err = uv__cloexec(fd, 1);  if (err == 0)    err = uv__nonblock(fd, 1);  if (err) {    uv__close(fd);    return err;  }  return fd;}
开发者ID:MaxTan,项目名称:cozy,代码行数:26,


示例10: uv__socket

/* Open a socket in non-blocking close-on-exec mode, atomically if possible. */int uv__socket(int domain, int type, int protocol) {  int sockfd;#if defined(SOCK_NONBLOCK) && defined(SOCK_CLOEXEC)  sockfd = socket(domain, type | SOCK_NONBLOCK | SOCK_CLOEXEC, protocol);  if (sockfd != -1)    goto out;  if (errno != EINVAL)    goto out;#endif  sockfd = socket(domain, type, protocol);  if (sockfd == -1)    goto out;  if (uv__nonblock(sockfd, 1) || uv__cloexec(sockfd, 1)) {    uv__close(sockfd);    sockfd = -1;  }out:  return sockfd;}
开发者ID:Maxence,项目名称:node,代码行数:27,


示例11: uv_device_open

int uv_device_open(uv_loop_t* loop,                   uv_device_t* device,                   uv_os_fd_t fd,                   int flags) {    int err;    int stream_flags = 0;    assert(device);    if (flags != O_RDONLY && flags != O_WRONLY && flags != O_RDWR) {        return -EINVAL;    }    uv__stream_init(loop, (uv_stream_t*) device, UV_DEVICE);    if (flags & O_RDONLY) {        stream_flags |= UV_STREAM_READABLE;    } else if (flags & O_WRONLY) {        stream_flags |= UV_STREAM_WRITABLE;    } else if (flags & O_RDWR) {        stream_flags |= UV_STREAM_READABLE | UV_STREAM_WRITABLE;    }    err = uv__nonblock(fd, 1);    if (err) {        return err;    }    err = uv__stream_open((uv_stream_t*) device, fd, stream_flags);    if (err) {        return err;    }    return 0;}
开发者ID:tigusoft-vm,项目名称:libuv,代码行数:32,


示例12: uv__accept

int uv__accept(int sockfd, struct sockaddr* saddr, socklen_t slen) {  int peerfd;  assert(sockfd >= 0);  while (1) {#if __linux__    peerfd = uv__accept4(sockfd, saddr, &slen, UV__SOCK_NONBLOCK|UV__SOCK_CLOEXEC);    if (peerfd != -1)      break;    if (errno == EINTR)      continue;    if (errno != ENOSYS)      break;#endif    if ((peerfd = accept(sockfd, saddr, &slen)) == -1) {      if (errno == EINTR)        continue;      else        break;    }    if (uv__cloexec(peerfd, 1) || uv__nonblock(peerfd, 1)) {      close(peerfd);      peerfd = -1;    }    break;  }  return peerfd;}
开发者ID:breakitfixit,项目名称:dnscrypt-proxy,代码行数:35,


示例13: uv_poll_init

int uv_poll_init(uv_loop_t* loop, uv_poll_t* handle, int fd) {  int err;  if (uv__fd_exists(loop, fd))    return UV_EEXIST;  err = uv__io_check_fd(loop, fd);  if (err)    return err;  /* If ioctl(FIONBIO) reports ENOTTY, try fcntl(F_GETFL) + fcntl(F_SETFL).   * Workaround for e.g. kqueue fds not supporting ioctls.   */  err = uv__nonblock(fd, 1);  if (err == UV_ENOTTY)    if (uv__nonblock == uv__nonblock_ioctl)      err = uv__nonblock_fcntl(fd, 1);  if (err)    return err;  uv__handle_init(loop, (uv_handle_t*) handle, UV_POLL);  uv__io_init(&handle->io_watcher, uv__poll_io, fd);  handle->poll_cb = NULL;  return 0;}
开发者ID:JuliaLang,项目名称:libuv,代码行数:26,


示例14: uv__socket

/* Open a socket in non-blocking close-on-exec mode, atomically if possible. */int uv__socket(int domain, int type, int protocol) {  int sockfd;  int err;#if defined(SOCK_NONBLOCK) && defined(SOCK_CLOEXEC)  sockfd = socket(domain, type | SOCK_NONBLOCK | SOCK_CLOEXEC, protocol);  if (sockfd != -1)    return sockfd;  if (errno != EINVAL)    return -errno;#endif  sockfd = socket(domain, type, protocol);  if (sockfd == -1)    return -errno;  err = uv__nonblock(sockfd, 1);  if (err == 0)    err = uv__cloexec(sockfd, 1);  if (err) {    uv__close(sockfd);    return err;  }#if defined(SO_NOSIGPIPE)  {    int on = 1;    setsockopt(sockfd, SOL_SOCKET, SO_NOSIGPIPE, &on, sizeof(on));  }#endif  return sockfd;}
开发者ID:Fantasticer,项目名称:libuv,代码行数:36,


示例15: uv_tcp_open

int uv_tcp_open(uv_tcp_t* handle, uv_os_sock_t sock) {  int err;  err = uv__nonblock(sock, 1);  if (err)    return err;  return uv__stream_open((uv_stream_t*)handle,                         sock,                         UV_STREAM_READABLE | UV_STREAM_WRITABLE);}
开发者ID:AndreasBriese,项目名称:node9,代码行数:11,


示例16: uv_poll_init

int uv_poll_init(uv_loop_t* loop, uv_poll_t* handle, int fd) {  int err;  err = uv__nonblock(fd, 1);  if (err)    return err;  uv__handle_init(loop, (uv_handle_t*) handle, UV_POLL);  uv__io_init(&handle->io_watcher, uv__poll_io, fd);  handle->poll_cb = NULL;  return 0;}
开发者ID:cwz920716,项目名称:tail.js,代码行数:12,


示例17: uv__accept

int uv__accept(int sockfd) {  int peerfd;  int err;  assert(sockfd >= 0);  while (1) {#if defined(__linux__)                          || /    (defined(__FreeBSD__) && __FreeBSD__ >= 10) || /    defined(__NetBSD__)    static int no_accept4;    if (no_accept4)      goto skip;    peerfd = uv__accept4(sockfd,                         NULL,                         NULL,                         UV__SOCK_NONBLOCK|UV__SOCK_CLOEXEC);    if (peerfd != -1)      return peerfd;    if (errno == EINTR)      continue;    if (errno != ENOSYS)      return UV__ERR(errno);    no_accept4 = 1;skip:#endif    peerfd = accept(sockfd, NULL, NULL);    if (peerfd == -1) {      if (errno == EINTR)        continue;      return UV__ERR(errno);    }    err = uv__cloexec(peerfd, 1);    if (err == 0)      err = uv__nonblock(peerfd, 1);    if (err) {      uv__close(peerfd);      return err;    }    return peerfd;  }}
开发者ID:Kitware,项目名称:CMake,代码行数:51,


示例18: uv_tty_init

int uv_tty_init(uv_loop_t* loop, uv_tty_t* tty, int fd, int readable) {  int flags;  int newfd;  int r;  uv__stream_init(loop, (uv_stream_t*)tty, UV_TTY);  /* Reopen the file descriptor when it refers to a tty. This lets us put the   * tty in non-blocking mode without affecting other processes that share it   * with us.   *   * Example: `node | cat` - if we put our fd 0 in non-blocking mode, it also   * affects fd 1 of `cat` because both file descriptors refer to the same   * struct file in the kernel. When we reopen our fd 0, it points to a   * different struct file, hence changing its properties doesn't affect   * other processes.   */  if (isatty(fd)) {    newfd = open("/dev/tty", O_RDWR);    if (newfd == -1)      return uv__set_sys_error(loop, errno);    do      r = dup2(newfd, fd);    while (r == -1 && (errno == EINTR || errno == EBUSY));    /* EINVAL means newfd == fd which could conceivably happen if another     * thread called close(fd) between our calls to isatty() and open().     * That's a rather unlikely event but let's handle it anyway.     */    if (r == -1 && errno != EINVAL) {      close(newfd);      return uv__set_sys_error(loop, errno);    }    fd = newfd;  }  if (readable)    flags = UV_STREAM_READABLE;  else    flags = UV_STREAM_WRITABLE;  uv__nonblock(fd, 1);  uv__stream_open((uv_stream_t*)tty, fd, flags);  tty->mode = 0;  return 0;}
开发者ID:EricPLerr,项目名称:node,代码行数:50,


示例19: uv__accept

int uv__accept(int sockfd) {  int peerfd;  int err;  assert(sockfd >= 0);  while (1) {#if defined(__linux__)    static int no_accept4;    no_accept4 = 1;  /* accept4 doesn't work on QNAP */    if (no_accept4)      goto skip;    peerfd = uv__accept4(sockfd,                         NULL,                         NULL,                         UV__SOCK_NONBLOCK|UV__SOCK_CLOEXEC);    if (peerfd != -1)      return peerfd;    if (errno == EINTR)      continue;    if (errno != ENOSYS)      return -errno;    no_accept4 = 1;skip:#endif    peerfd = accept(sockfd, NULL, NULL);    if (peerfd == -1) {      if (errno == EINTR)        continue;      return -errno;    }    err = uv__cloexec(peerfd, 1);    if (err == 0)      err = uv__nonblock(peerfd, 1);    if (err) {      uv__close(peerfd);      return err;    }    return peerfd;  }}
开发者ID:yemol,项目名称:node,代码行数:49,


示例20: uv__accept

int uv__accept(int sockfd) {  int peerfd;  assert(sockfd >= 0);  while (1) {#if defined(__linux__)    static int no_accept4;    if (no_accept4)      goto skip;    peerfd = uv__accept4(sockfd,                         NULL,                         NULL,                         UV__SOCK_NONBLOCK|UV__SOCK_CLOEXEC);    if (peerfd != -1)      break;    if (errno == EINTR)      continue;    if (errno != ENOSYS)      break;    no_accept4 = 1;skip:#endif    peerfd = accept(sockfd, NULL, NULL);    if (peerfd == -1) {      if (errno == EINTR)        continue;      else        break;    }    if (uv__cloexec(peerfd, 1) || uv__nonblock(peerfd, 1)) {      close(peerfd);      peerfd = -1;    }    break;  }  return peerfd;}
开发者ID:anguskwan,项目名称:libuv,代码行数:49,


示例21: uv_tty_init

int uv_tty_init(uv_loop_t* loop, uv_tty_t* tty, int fd, int readable) {  uv__stream_init(loop, (uv_stream_t*)tty, UV_TTY);  if (readable) {    uv__nonblock(fd, 1);    uv__stream_open((uv_stream_t*)tty, fd, UV_STREAM_READABLE);  } else {    /* Note: writable tty we set to blocking mode. */    uv__stream_open((uv_stream_t*)tty, fd, UV_STREAM_WRITABLE);    tty->flags |= UV_STREAM_BLOCKING;  }  tty->mode = 0;  return 0;}
开发者ID:2hanson,项目名称:node,代码行数:15,


示例22: uv_tty_init

int uv_tty_init(uv_loop_t* loop, uv_tty_t* tty, int fd, int readable) {  uv__stream_init(loop, (uv_stream_t*)tty, UV_TTY);  if (readable) {    uv__nonblock(fd, 1);    uv__stream_open((uv_stream_t*)tty, fd, UV_READABLE);  } else {    /* Note: writable tty we set to blocking mode. */    uv__stream_open((uv_stream_t*)tty, fd, UV_WRITABLE);    tty->blocking = 1;  }  loop->counters.tty_init++;  tty->mode = 0;  return 0;}
开发者ID:337240552,项目名称:node,代码行数:16,


示例23: new_inotify_fd

static int new_inotify_fd(void) {#if HAVE_INOTIFY_INIT1  return inotify_init1(IN_NONBLOCK | IN_CLOEXEC);#else  int fd;  if ((fd = inotify_init()) == -1)    return -1;  if (uv__cloexec(fd, 1) || uv__nonblock(fd, 1)) {    SAVE_ERRNO(uv__close(fd));    fd = -1;  }  return fd;#endif}
开发者ID:jmesmon,项目名称:libuv,代码行数:17,


示例24: uv_pipe_open

int uv_pipe_open(uv_pipe_t* handle, uv_os_fd_t fd) {  int err;  err = uv__nonblock(fd, 1);  if (err)    return err;#if defined(__APPLE__)  err = uv__stream_try_select((uv_stream_t*) handle, &fd);  if (err)    return err;#endif /* defined(__APPLE__) */  return uv__stream_open((uv_stream_t*)handle,                         fd,                         UV_STREAM_READABLE | UV_STREAM_WRITABLE);}
开发者ID:clibs,项目名称:uv,代码行数:17,


示例25: uv__socket

/* Open a socket in non-blocking close-on-exec mode, atomically if possible. */int uv__socket(int domain, int type, int protocol) {#if defined(SOCK_NONBLOCK) && defined(SOCK_CLOEXEC)  return socket(domain, type | SOCK_NONBLOCK | SOCK_CLOEXEC, protocol);#else  int sockfd;  if ((sockfd = socket(domain, type, protocol)) == -1) {    return -1;  }  if (uv__nonblock(sockfd, 1) == -1 || uv__cloexec(sockfd, 1) == -1) {    uv__close(sockfd);    return -1;  }  return sockfd;#endif}
开发者ID:Mandar-Shinde,项目名称:node,代码行数:19,


示例26: uv_udp_open

int uv_udp_open(uv_udp_t* handle, uv_os_sock_t sock) {  int err;  /* Check for already active socket. */  if (handle->io_watcher.fd != -1)    return -EALREADY;  /* FIXME(bnoordhuis) Should be -EBUSY. */  err = uv__nonblock(sock, 1);  if (err)    return err;  err = uv__set_reuse(sock);  if (err)    return err;  handle->io_watcher.fd = sock;  return 0;}
开发者ID:Muraad,项目名称:harmony,代码行数:18,


示例27: uv_udp_open

int uv_udp_open(uv_udp_t* handle, uv_os_sock_t sock) {  int err;  /* Check for already active socket. */  if (handle->io_watcher.fd != -1)    return -EBUSY;  err = uv__nonblock(sock, 1);  if (err)    return err;  err = uv__set_reuse(sock);  if (err)    return err;  handle->io_watcher.fd = sock;  return 0;}
开发者ID:cwz920716,项目名称:tail.js,代码行数:18,


示例28: uv__process_open_stream

static int uv__process_open_stream(uv_stdio_container_t* container, int fds[2],                                   int writable) {  int fd = fds[writable ? 1 : 0];  int child_fd = fds[writable ? 0 : 1];  int flags;  /* No need to create stream */  if (!(container->flags & UV_CREATE_PIPE) || fd < 0) {    return 0;  }  assert(child_fd >= 0);  close(child_fd);  uv__nonblock(fd, 1);  flags = uv__process_stdio_flags(container, writable);  return uv__stream_open((uv_stream_t*)container->data.stream, fd, flags);}
开发者ID:MaxNanasy,项目名称:node,代码行数:19,


示例29: new_inotify_fd

static int new_inotify_fd(void) {  int fd;  fd = uv__inotify_init1(UV__IN_NONBLOCK | UV__IN_CLOEXEC);  if (fd != -1)    return fd;  if (errno != ENOSYS)    return -1;  if ((fd = uv__inotify_init()) == -1)    return -1;  if (uv__cloexec(fd, 1) || uv__nonblock(fd, 1)) {    SAVE_ERRNO(close(fd));    return -1;  }  return fd;}
开发者ID:breakitfixit,项目名称:dnscrypt-proxy,代码行数:19,


示例30: uv_tty_init

int uv_tty_init(uv_loop_t* loop, uv_tty_t* tty, int fd, int readable) {  uv__stream_init(loop, (uv_stream_t*)tty, UV_TTY);#if defined(__APPLE__)  if (uv__stream_try_select((uv_stream_t*) tty, &fd))    return -1;#endif /* defined(__APPLE__) */  if (readable) {    uv__nonblock(fd, 1);    uv__stream_open((uv_stream_t*)tty, fd, UV_STREAM_READABLE);  } else {    /* Note: writable tty we set to blocking mode. */    uv__stream_open((uv_stream_t*)tty, fd, UV_STREAM_WRITABLE);    tty->flags |= UV_STREAM_BLOCKING;  }  tty->mode = 0;  return 0;}
开发者ID:1GHL,项目名称:learn_libuv,代码行数:20,



注:本文中的uv__nonblock函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


C++ uv__req_init函数代码示例
C++ uv__new_sys_error函数代码示例
万事OK自学网:51自学网_软件自学网_CAD自学网自学excel、自学PS、自学CAD、自学C语言、自学css3实例,是一个通过网络自主学习工作技能的自学平台,网友喜欢的软件自学网站。