这么高的悬赏,实例放后面。信号量(sem),如同进程一样,线程也可以通过信号量来实现通信,虽然是轻量级的。信号量函数的名字都以"sem_"打头。线程使用的基本信号量函数有四个。
信号量初始化。int sem_init (sem_t *sem , int pshared, unsigned int value)
这是对由sem指定的信号量进行初始化,设置好它的共享选项(linux 只支持为0,即表示它是当前进程的局部信号量),然后给它一个初始值VALUE。
等待信号量。给信号量减1,然后等待直到信号量的值大于0。
int sem_wait(sem_t *sem)
释放信号量。信号量值加1。并通知其他等待线程。
int sem_post(sem_t *sem)
销毁信号量。我们用完信号量后都它进行清理。归还占有的一切资源。
int sem_destroy(sem_t *sem) #include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <pthread.h>
#include <semaphore.h>
#include <errno.h>
#define return_if_fail(p) if((p) == 0){printf ("[%s]:func error!/n", __func__)return}
typedef struct _PrivInfo
{
sem_t s1
sem_t s2
time_t end_time
}PrivInfo
static void info_init (PrivInfo* thiz)
static void info_destroy (PrivInfo* thiz)
static void* pthread_func_1 (PrivInfo* thiz)
static void* pthread_func_2 (PrivInfo* thiz)
int main (int argc, char** argv)
{
pthread_t pt_1 = 0
pthread_t pt_2 = 0
int ret = 0
PrivInfo* thiz = NULL
thiz = (PrivInfo* )malloc (sizeof (PrivInfo))
if (thiz == NULL)
{
printf ("[%s]: Failed to malloc priv./n")
return -1
}
info_init (thiz)
ret = pthread_create (&pt_1, NULL, (void*)pthread_func_1, thiz)
if (ret != 0)
{
perror ("pthread_1_create:")
}
ret = pthread_create (&pt_2, NULL, (void*)pthread_func_2, thiz)
if (ret != 0)
{
perror ("pthread_2_create:")
}
pthread_join (pt_1, NULL)
pthread_join (pt_2, NULL)
info_destroy (thiz)
return 0
}
static void info_init (PrivInfo* thiz)
{
return_if_fail (thiz != NULL)
thiz->end_time = time(NULL) + 10
sem_init (&thiz->s1, 0, 1)
sem_init (&thiz->s2, 0, 0)
return
}
static void info_destroy (PrivInfo* thiz)
{
return_if_fail (thiz != NULL)
sem_destroy (&thiz->s1)
sem_destroy (&thiz->s2)
free (thiz)
thiz = NULL
return
}
static void* pthread_func_1 (PrivInfo* thiz)
{
return_if_fail(thiz != NULL)
while (time(NULL) < thiz->end_time)
{
sem_wait (&thiz->s2)
printf ("pthread1: pthread1 get the lock./n")
sem_post (&thiz->s1)
printf ("pthread1: pthread1 unlock/n")
sleep (1)
}
return
}
static void* pthread_func_2 (PrivInfo* thiz)
{
return_if_fail (thiz != NULL)
while (time (NULL) < thiz->end_time)
{
sem_wait (&thiz->s1)
printf ("pthread2: pthread2 get the unlock./n")
sem_post (&thiz->s2)
printf ("pthread2: pthread2 unlock./n")
sleep (1)
}
return
}
SEM(搜索引擎营销)SEM是SearchEngineMarketing的缩写
我是优势:)
1、即时流量:
既然你购买的是搜索引擎广告,那么你的网站关键词排名和流量可以或许或者在几分钟之内出现和增长。
2、便于测试:
SEM广告见效快,数据信息丰富,可以或许或者用来做AB测试,比拟分析哪些页面有更好的转化。虽然经过进程SEM也可以或许或者辅导SEO的关键词计谋,经过进程测试不同组别的关键词和对应的登陆页,观察访客行为数据,订单转化,挑选用户参与度高或者转化化率高的词作为SEO的关键词计谋的参考。
3、精准ROI打算:
PPC有清楚的花费,展示、点击和转化,这些都可以或许或者被很好的追踪。经过进程数据分析比拟可以或许或者清楚地打算CPS或CPA,经过进程分析这些目的可以或许或者帮助在线营销人员及时作出相应的调度计谋。
4、精准投放:
这个功能对本地企业颇有帮助,你可以或许或者在PPC账户后援去指定都邑来投放你的关键词。这样可以或许或者让你的埋伏用户更精准、意向性更强,也减少很多有用花费和流量。
5、品牌专区:
不得不说百度的品牌专区做的是很不错的。一旦网站购买品专,你就能够或许或者迅速得到大量用户关注度,把统统的不相关网站都挤出首屏。品专尚有很多自定义的功能,你可以或许或者把你网站的重要产品或是栏目优先展示在搜索成果上,延伸转化率路子。
欢迎分享,转载请注明来源:夏雨云
评论列表(0条)