摘要: 一个简单的例子,查看当前文件路径中的文件,查找有‘bye’字符的行,并修改为‘bye’。 注: else: file_out.write(line) 这两行代码不能少,保证了没有包含‘bye’字符的行也可以被重新写入文件中,防止了处理完成后文件中只剩下字符所在行。 阅读全文
posted @ 2017-07-12 11:47 Edver 阅读(184) 评论(0) 推荐(0) 编辑
摘要: header for public argument:shmdata.h #define TEXT_SZ 2048 struct shared_use_st { int written; char text[TEXT_SZ]; }; #endif shmread.c #include <unistd 阅读全文
posted @ 2017-07-12 11:37 Edver 阅读(247) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <pthread.h> pthread_t work1Id; pthread_t work2Id; int work1Ret = 1; int work2Ret = 2; pthread_cond_t cond_ready = PTHREAD_ 阅读全文
posted @ 2017-07-12 11:17 Edver 阅读(280) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <pthread.h> struct char_print_params { char character; int count; }; void *char_print(void *parameters) { struct char_prin 阅读全文
posted @ 2017-07-12 11:14 Edver 阅读(401) 评论(0) 推荐(0) 编辑
摘要: TCP连接方式 sever.c client.c UDP方式连接 sever.c client.c 阅读全文
posted @ 2017-07-12 10:00 Edver 阅读(815) 评论(0) 推荐(0) 编辑