Keep looking Donot settle
发布时间:2016-10-30 13:35:03
--------------------static int _init embed_hello_init (void) 1)embed_hello_init 不是结构体名,是函数名2)int _init部分,int 表示函数的返回值类型,是整型扣除_init去看,static int embed_hello_init (void),就是定义一个静态的无入参函数,返回值是整型。这些概念跟嵌入式,linux,驱动都没有任何关系.........【阅读全文】
发布时间:2016-10-19 14:11:32
http://blog.csdn.net/kyokowl/article/details/6294341POSIX threads(简称Pthreads)是在多核平台上进行并行编程的一套常用的API。线程同步(Thread Synchronization)是并行编程中非常重要的通讯手段,其中最典型的应用就是用Pthreads提供的锁机制(lock)来对多个线程之间共 享的临界区(Critical Section)进行.........【阅读全文】