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

📄 clog_joiner.h

📁 fortran并行计算包
💻 H
字号:
/*   (C) 2001 by Argonne National Laboratory.       See COPYRIGHT in top-level directory.*/#if !defined( _CLOG_JOINER )#define _CLOG_JOINER#include "clog_cache.h"#include "clog_block.h"typedef struct {   /* array[num_caches] of input cache pointers */   CLOG_Cache_t     **in_caches;   unsigned int       num_caches;   CLOG_Cache_t      *out_cache;   /* binary linked list of in_caches[] sorted by increasing time order */   CLOG_CacheLink_t  *sorted_caches_head;   CLOG_CacheLink_t  *sorted_caches_tail;} CLOG_Joiner_t;CLOG_Joiner_t* CLOG_Joiner_create( int num_files, char *filenames[] );void CLOG_Joiner_free( CLOG_Joiner_t **joiner_handle );void CLOG_Joiner_init( CLOG_Joiner_t *joiner, const char *out_filename );void CLOG_Joiner_sort( CLOG_Joiner_t *joiner );void CLOG_Joiner_finalize( CLOG_Joiner_t *joiner );#endif

⌨️ 快捷键说明

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