练习1
<1>子线程循环从键盘输入数据stdin,然后输出到屏幕上stdout。当用户输入quit的退出当前线程。并把退出码0x78传递给主线程。
<2>主线程调用pthread join阻塞等待子线程退出。当子现场退出后,输出子线程的退出码然后结束主线程。
#include <errno.h>
#include <fcntl.h>
#include <pthread.h>
#include <stdio.h>
#include <string.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
void* thread_function(void* arg) {
char buf[128] = {0};
static int ret = 0x78;
while (1) {
memset(buf, 0, sizeof(buf));
read(STDIN_FILENO, buf, sizeof(buf));
write(STDOUT_FILENO, buf, strlen(buf));
if (strncmp(buf, "quit", 4) == 0) break;
}
pthread_exit(&ret);
}
int main(int argc, char const* argv[]) {
pthread_t tid;
int ret;
int* retval;
ret = pthread_create(&tid, NULL, thread_function, NULL);
if (ret != 0) {
errno = ret;
perror("fail to pthread_create");
return -1;
}
pthread_join(tid, (void**)&retval);
printf("retval = %x\n", *retval);
return 0;
}
练习2
1.定义两个全局少量tid1和tid2,分别表示读写线程的tid号.
2.main函数用open以读写的方式打开文件,文件存在则清空文件,文件不存在则创建
3.创建读线程read thread,从文件中读取文件内容,然后输出到屏幕上。
4,创建写线程write thread,从键盘上输入数据(fgets),向文件中写入数据数据。写完后,文件定位也需要修改如果写入的"quit"的时候,利用pthread cancel()函数向读线程发送终止信息,然后结束当前线程。
5.主线程再等待两个子线程退出,利用pthead_join来回收连个线程的资源。
注意:多个线程之间,文件描述符是共享的。
#include <errno.h>
#include <fcntl.h>
#include <pthread.h>
#include <stdio.h>
#include <string.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
struct data {
int fd;
pthread_t tid;
};
void *read_thread(void *arg) {
int fd = *(int *)arg;
char buf[128] = {0};
int n = 0;
while (1) {
memset(buf, 0, sizeof(buf));
read(fd, buf, sizeof(buf));
if (buf[0] == 0) continue;
printf("Read %ld bytes :%s\n", strlen(buf), buf);
}
pthread_exit(NULL);
}
void *write_thread(void *arg) {
struct data d = *(struct data *)arg;
int fd = d.fd;
pthread_t tid1 = d.tid;
char buf[128] = {0};
int n = 0;
int ret = 0;
while (1) {
memset(buf, 0, sizeof(buf));
fgets(buf, sizeof(buf), stdin);
n = write(fd, buf, sizeof(buf));
lseek(fd, -strlen(buf), SEEK_CUR);
if (strncmp(buf, "quit", 4) == 0) {
ret = pthread_cancel(tid1);
if (ret != 0) {
errno = ret;
perror("pthread_cancel");
}
break;
}
}
pthread_exit(NULL);
}
int main(int argc, char const *argv[]) {
pthread_t tid1, tid2;
int fd;
fd = open(argv[1], O_RDWR | O_CREAT | O_TRUNC, 0666);
if (fd < 0) {
perror("fail to open");
return -1;
}
pthread_create(&tid1, NULL, read_thread, &fd);
struct data d = {.fd = fd, .tid = tid1};
pthread_create(&tid2, NULL, write_thread, &d);
pthread_join(tid1, NULL);
pthread_join(tid2, NULL);
return 0;
}
写入可以,但没有读取出来。