本文主要是介绍GLib库对核心应用的支持,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
代码:
/** main.c** Created on: 2024-6-19* Author: root*/#include <glib.h> // 包含GLib函数库
static GMutex *mutex = NULL;
static gboolean t1_end = FALSE; // 用于结束线程1的标志
static gboolean t2_end = FALSE; // 用于结束线程2的标志
typedef struct _Arg Arg;
struct _Arg
{GMainLoop* loop; // 该成员为一个GLib实现循环对象gint max;
};
void run_1(Arg *arg) // 线程1函数
{int i ;for(i=0; i < arg->max; i++) {if(g_mutex_trylock(mutex) == FALSE) {g_print("%d :thread2 lock mutex target\n", i);g_mutex_unlock(mutex); // 对像解锁}elseg_usleep(10); // 使线程睡眠10秒}t1_end = TRUE; // 将该线程结束的标志置为非0
}
void run_2(Arg *arg) // 线程2函数
{int i;for(i = 0; i < arg->max; i++) {if(g_mutex_trylock(mutex) == FALSE) {g_print("%d :thread1 lock mutex target\n", i);g_mutex_unlock(mutex); // 对像解锁}elseg_usleep(10); // 使线程睡眠10秒}t2_end = TRUE; // 将该线程结束的标志置为非0
}
void run_3(Arg *arg) // 线程3函数
{for( ; ; ) { // 建立一个死循环if(t1_end && t2_end) { // 判断线程1和线程2是否已结束g_main_loop_quit(arg->loop); // 退出GLib主循环break;}}
}int main()
{GMainLoop *mloop; // 创建GLib主循环Arg *arg; // 声明包含指向GLib主循环指针和计数器的结构if(!g_thread_supported()) // 判断是否支持GLib线程g_thread_init(NULL);mloop = g_main_loop_new(NULL, FALSE); // 开始GLib主循环arg = g_new(Arg, 1);arg->loop = mloop;arg->max = 11;mutex = g_mutex_new(); // 创建一个GMutex对象线程池g_thread_create(run_1, arg, TRUE, NULL); // 创建线程1g_thread_create(run_2, arg, TRUE, NULL); // 创建线程2g_thread_create(run_3, arg, TRUE, NULL); // 创建线程3g_main_loop_run(mloop); // 运行主循环g_print("thread3exit event cycle\n");g_mutex_free(mutex); // 释放GMutex对象g_print("release mutex event\n");g_free(arg); // 清除结构体argg_print("release prar use ram\n");return 0;
}
编译
运行
这篇关于GLib库对核心应用的支持的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!