摘要:
一个简单的例子,查看当前文件路径中的文件,查找有‘bye’字符的行,并修改为‘bye’。 注: else: file_out.write(line) 这两行代码不能少,保证了没有包含‘bye’字符的行也可以被重新写入文件中,防止了处理完成后文件中只剩下字符所在行。 阅读全文
摘要:
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 阅读全文
摘要:
#include <stdio.h> #include <pthread.h> pthread_t work1Id; pthread_t work2Id; int work1Ret = 1; int work2Ret = 2; pthread_cond_t cond_ready = PTHREAD_ 阅读全文
摘要:
#include <stdio.h> #include <pthread.h> struct char_print_params { char character; int count; }; void *char_print(void *parameters) { struct char_prin 阅读全文
摘要:
TCP连接方式 sever.c client.c UDP方式连接 sever.c client.c 阅读全文