自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

quanguoheme的专栏

主攻嵌入式软件开发方面

  • 博客(7)
  • 资源 (8)
  • 收藏
  • 关注

原创 Linux 进程间通信 (IPC) // 消息队列

#include #include #include #include #include #include #include #include struct my_msg_st{    long int my_msg_type;char some_text[BUFSIZ];};int main(void){

2014-02-28 10:57:47 738

原创 Linux 进程间通信 (IPC) //共享内存

#include #include #include #include #include #include #include #include "shm_com.h"int main(void){    int running=1;void *shared_memory=(void *)0;struct shared_use_st *shar

2014-02-28 10:56:53 685

原创 Linux 进程间通信 (IPC) //信号

#include #include #include /*自定义信号处理函数*/void my_func(int sign_no){if(sign_no==SIGBUS)printf("I have get SIGBUS\n");}int main(){printf("Waiting for signal SIGBUS \n ");/*注

2014-02-28 10:55:39 678

原创 Linux 进程间通信 (IPC) //管道

//消息队列1//信号量4//管道#include #include #include #include #include #include int main(){ int pipe_fd[2]; pid_t pid; char buf_r[100]; char* p_wbuf; int r_num; memset

2014-02-28 10:54:40 734

转载 【入门】用Linux中man命令查询C函数

大家都知道在Unix/Linux中有个man命令,可以查询常用的命令,函数。可是对于我们这样只知道用"man 函数名"来查询的人来说,会遇到很多问题,比如:      man read,我想看的是ANSI C中stdio的read函数原型和说明,没想到出来的确是BASH命令的说明,这是怎么回事呢?       原来read本身是man命令的一个参数,这样输入man就会以为你

2014-02-28 09:53:33 823

原创 谁决定.ko文件的名称?

一直认为有一个xx.ko 那么必然存在一个xx.c文件.但是这个结论是错的.ifneq ($(KERNELRELEASE),)#obj-m := aadev.owl12xx_sdio-objs = aadev.oobj-m += wl12xx_sdio.oelse KDIR := /quck/uboot/myandroid_boundar

2014-02-27 14:14:18 1197

原创 学习国嵌实验手册

///////////////////////////////////void *thread(void *str);    pthread_t pth;/*创建线程并执行线程执行函数*/    int ret = pthread_create(&pth, NULL, thread, NULL);/*线程处理函数pthread_cleanup_push / pthrea

2014-02-12 11:30:18 952

source insight 主题包

使用方便,解压rar后, 双击*.dprf 文件 ,即可安装主题包.如果想恢复.点击backup里面的*.dprf文件即可恢复.

2014-04-25

source insight 中C.tom文件示例

source insight C.tom 示例使用方法参考http://blog.csdn.net/aquakguo0he1/article/details/7493984

2013-11-08

libGL.so.1.2

libGL.so.1.2 come from libgl1-mesa-glx:i386 you can get it use:sudu apt-get install libgl1-mesa-glx:i386 .but this commamd is bad. android ubuntu12.04

2013-08-06

repo android tool

repo is a tool, can be used to download android source from google. you can create the tool by command:curl * GPL * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 as published * by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * for more details.

2013-08-04

arm_ucos_1.161

arm_ucos_1.161 代码 要的 下 老子 没积分了 郁闷

2009-05-22

ucos+arm9应用

ucos+arm9应用ucos+arm9应用

2009-05-22

VS2.6.5改名解锁补丁(可以改等级)

VS2.6.5改名解锁补丁 使用方法 解压 有vs启动魔兽 运行该程序 即可

2009-05-22

j2me手机游戏5子棋

里面是 游戏的代码 但是3个图片传不上,所以请你自己做个图片 但是名字必须跟我的代码中名字一样,下面是图片的代码 Image.createImage("/ground.png"); Image.createImage("/black.png"); Image.createImage("/white.png");

2009-01-04

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除