加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
thread_functions.h 642 Bytes
一键复制 编辑 原始数据 按行查看 历史
nza34 提交于 2023-10-23 14:00 . last change
#ifndef THREAD_FUNCTIONS_H
#define THREAD_FUNCTIONS_H
#include <pthread.h>
// #include <stdio.h>
// #include <stdlib.h>
// #include <unistd.h>
#include "LinkedList/list.h"
#include "socket_communications.h"
typedef struct ThreadInfo_S pThreadD;
struct ThreadInfo_S{
List* sharedList;
const char* ip_address;
int port;
};
void threads_shutdown();
void threads_init(int port, int remotePort, char* remoteIp, List* inputList, List* outputList);
void* keyboard_input_func(void* threadarg);
void* send_thread_func(void* threadarg);
void* receive_thread_func(void* threadarg);
void* screen_output_func(void* threadarg);
#endif
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化