⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 win_types.i

📁 fortran并行计算包
💻 I
字号:
/* -*- Mode: C; c-basic-offset:4 ; -*- *//* * *  (C) 2001 by Argonne National Laboratory. *      See COPYRIGHT in top-level directory. *//* For "historical" reasons windows.h includes winsock.h  * internally and WIN32_MEAN_AND_LEAN is to be defined * if we plan to include winsock2.h later on -- in the  * include hierarchy -- to prevent type redefinition  * errors... */#define WIN32_LEAN_AND_MEAN#include <windows.h>typedef HANDLE MPE_Thread_mutex_t;typedef HANDLE MPE_Thread_id_t;typedef DWORD MPE_Thread_tls_t;typedef struct MPE_Thread_cond_fifo_t{    HANDLE event;    struct MPE_Thread_cond_fifo_t *next;} MPE_Thread_cond_fifo_t;typedef struct MPE_Thread_cond_t{    MPE_Thread_tls_t tls;    MPE_Thread_mutex_t fifo_mutex;    MPE_Thread_cond_fifo_t *fifo_head, *fifo_tail;} MPE_Thread_cond_t;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -