
DBus
文章平均质量分 67
xtx1990
新一代年轻人
展开
-
DBus编译出错
在解压的DBus目录下配置时,运行./configure中出现下面错误: could not find expat.h 解决方法: 运行 sudo apt-get install libexpat1-dev ,这样在运行configure时就不会再出现这个错误了。 然后编译 make 最好安装 make install 这样在/usr/include/下就会包含一个DBus文件的原创 2012-11-12 13:38:50 · 1302 阅读 · 0 评论 -
DBus实例-1
/** Example low-level D-Bus code.* Written by Matthew Johnson dbus@matthew.ath.cx>** This code has been released into the Public Domain.* You may do whatever you like with it.*/#include #include #incl原创 2012-11-12 13:38:57 · 444 阅读 · 0 评论 -
DBus基础知识
1. 进程间使用D-Bus通信 D-Bus是一种高级的进程间通信机制,它由freedesktop.org项目提供,使用GPL许可证发行。D-Bus最主要的用途是在Linux桌面环境为进程提供通信,同时能将Linux桌面环境和Linux内核事件作为消息传递到进程。D-Bus的主要概率为总线,注册后的进程可通过总线接收或传递消息,进程也可注册后等待内核事件响应,例如等待网络状态的转变或者计算原创 2012-11-12 13:38:48 · 496 阅读 · 0 评论 -
DBus资源
(1)Connect desktop apps using D-BUS:http://www-128.ibm.com/developerworks/linux/library/l-dbus.html?ca=dgr-lnxw95D-BUS. 一个外国牛人写的有关DBUS的简介,附有简单的例程,但例程需要稍做修改才能编译通过,修改后的函数signal_filter和send_pi原创 2012-11-12 13:38:52 · 413 阅读 · 0 评论 -
DBus学习笔记
http://dotnet.cnblogs.com/page/76759/?page=1 作者:Jerry_Chen 来源:www.meegoq.com 时间:2010-10-12 阅读:513 次 原文链接 [收藏] 整页浏览 摘要:DBus作为一个轻量级的IPC被越来越多的平台接受,在MeeGo中DBus也是主要的进程间通信转载 2013-05-17 13:47:31 · 1986 阅读 · 0 评论