libPhenom C 语言并发编程框架开源项目

我要开发同款
匿名用户2013年09月17日
75阅读
所属分类C/C++、程序开发、并发/并行处理框架
授权协议Apache

作品详情

libPhenom是Facebook发布的一个高性能的C语言并发编程框架,支持事件驱动,支持多线程,还提供了内存管理和常用数据结构,甚至是json处理。

示例代码:

#include "phenom/defs.h"#include "phenom/job.h"#include "phenom/log.h"#include "phenom/sysutil.h"int main(int argc, char **argv){  // Must be called prior to calling any other phenom functions  ph_library_init();  // Optional config file for tuning internals  ph_config_load_config_file("/path/to/my/config.json");  // Enable the non-blocking IO manager  ph_nbio_init(0);  // Do stuff here to register client/server stuff.  // This enables a very simple request/response console  // that allows you to run diagnostic commands:  // `echo memory | nc -UC /tmp/phenom-debug-console`  // The code behind this is in  // https://github.com/facebook/libphenom/blob/master/corelib/debug_console.c  ph_debug_console_start("/tmp/phenom-debug-console");  // Run  ph_sched_run();  return 0;}
声明:本文仅代表作者观点,不代表本站立场。如果侵犯到您的合法权益,请联系我们删除侵权资源!如果遇到资源链接失效,请您通过评论或工单的方式通知管理员。未经允许,不得转载,本站所有资源文章禁止商业使用运营!
下载安装【程序员客栈】APP
实时对接需求、及时收发消息、丰富的开放项目需求、随时随地查看项目状态

评论