代码拉取完成,页面将自动刷新
/*
* .============.
* // M A K E / \
* // C++ DEV / \
* // E A S Y / \/ \
* ++ ----------. \/\ .
* \\ \ \ /\ /
* \\ \ \ /
* \\ \ \ /
* -============'
*
* Copyright (c) 2018 Hevake and contributors, all rights reserved.
*
* This file is part of cpp-tbox (https://github.com/cpp-main/cpp-tbox)
* Use of this source code is governed by MIT license that can be found
* in the LICENSE file in the root of the source tree. All contributing
* project authors may be found in the CONTRIBUTORS.md file in the root
* of the source tree.
*/
#include "misc.h"
#include <fcntl.h>
#include <errno.h>
#include <unistd.h>
#include <sys/eventfd.h>
#include <tbox/base/log.h>
namespace tbox {
namespace event {
bool CreateFdPair(int &read_fd, int &write_fd)
{
int fds[2] = { 0 };
if (pipe2(fds, O_CLOEXEC | O_NONBLOCK) != 0) { //!FIXME
LogErr("pip2() fail, ret:%d", errno);
return false;
}
read_fd = fds[0];
write_fd = fds[1];
return true;
}
int CreateEventFd()
{
int evtfd = ::eventfd(0, EFD_NONBLOCK | EFD_CLOEXEC);
if (evtfd < 0)
LogErr("eventfd fail, ret:%d", errno);
return evtfd;
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。