该文被密码保护。 阅读全文
摘要:
``` #include typedef enum SessionState { SESSION_OPENING, /* Session scope is being created */ SESSION_ONLINE, /* Logged in */ SESSION_ACTIVE, /* Logged in and in the fg... 阅读全文
摘要:
在编译C语言时有时会遇到这样的错误提示: 'true' undeclared (first use in this function) or `false' undeclared (first use in this function) 就是说 bool, true, false 都是undecla 阅读全文
摘要:
RFC http://www.ietf.org/rfc/rfc5905.txt https://www.eecis.udel.edu/~mills/ntp/html/select.html https://wenku.baidu.com/view/1539c86a71fe910ef02df83f.h 阅读全文
摘要:
https://wenku.baidu.com/view/09d5a29e6bec0975f465e2a7.html http://www.satsignal.eu/ntp/setup.html window deploy ntp: http://www.satsignal.eu/ntp/setup 阅读全文
摘要:
```
#cat log5
mmmm
1234
nnnn
2344
``` ```
#sed -n '{N;s/\n/\t/p}' log5
mmmm 1234
nnnn 2344 ``` 阅读全文
摘要:
LD_DEBUG 是 glibc 中的 loader 为了方便自身调试而设置的一个环境变量。通过设置这个环境变量,可以方便的看到 loader 的加载过程。 LD_DEBUG=help ./main Valid options for the LD_DEBUG environment variabl 阅读全文
该文被密码保护。 阅读全文
摘要:
Intel MPX https://en.wikipedia.org/wiki/Intel_MPX SPDK http://aidaiz.com/spdk/ TCMalloc http://goog perftools.sourceforge.net/doc/tcmalloc.html dpdk h 阅读全文