摘要: 网络运维工具 1.0 ifconfig 用于显示或配置网络设备的命令 关闭、打开网卡 启用网卡 ifconfig eth0 up 禁用网卡 ifconfig eth0 down 修改ip、子网掩码 ifconfig eth0 10.82.16.195 ifconfig eth0 10.82.16.1 阅读全文
posted @ 2018-12-09 20:25 osbreak 阅读(574) 评论(0) 推荐(0) 编辑
摘要: 锁 01 std::unique_lock对mutex进行自动加解锁, 比lock_guard更加灵活。 mutex m; void fun() { // std::try_to_lock 可以避免一些不必要的等待,会判断当前mutex能否被上锁,如果不能被lock,可以先去执行其他代码。 std: 阅读全文
posted @ 2018-12-09 19:21 osbreak 阅读(360) 评论(0) 推荐(0) 编辑
摘要: C++11中新增了,Mutex互斥量, 它是C++标准程序库中的一个头文件。std::mutex不支持copy和move操作,最初的std::mutex对象是处于unlocked状态。 Mutex 系列类(四种) std::mutex,最基本的 Mutex 类。 std::recursive_mutex,递归 Mutex 类。 std::time_mutex,... 阅读全文
posted @ 2018-12-09 19:06 osbreak 阅读(1200) 评论(0) 推荐(0) 编辑