
#include 就可以了。redis的源代码下有一个aec,需要根据windows或者linux等情况包含不同的文件
/ Include the best multiplexing layer supported by this system
The following should be ordered by performances, descending /
#ifdef _WIN32
#include "ae_wsiocpc"
#else
#ifdef HAVE_EVPORT
#include "ae_evportc"
#else
#ifdef HAVE_EPOLL
#include "ae_epollc"
#else
#ifdef HAVE_KQUEUE
#include "ae_kqueuec"
#else
#include "ae_selectc"
#endif
#endif
#endif
#endif
以上就是关于怎么把自己做的程序植入到另一个程序中全部的内容,包括:怎么把自己做的程序植入到另一个程序中、、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
微信扫一扫
支付宝扫一扫
评论列表(0条)