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

📄 os.h

📁 Parallel programming/Lou Baker, Bradley J.Smith .—New York:McGraw-Hill Book Co.
💻 H
字号:
/* PSPH - Parallel SPH program
 * Bradley Smith, and Lou Baker, Dagonet Software
 */
/* static char sccs_id[] = "@(#) /home2/bsmith/src/psph/SCCS/s.os.h 1.7 94/02/08"; */

/* Operating System Specific Functions
 */

/* Functions */

/* Message Functions */
/* Parallel print */
void Debug(char *fmt, ...);		/* Debugging output */
void PPrintString(char *s);			/* Actual parallel print (underlying) */


/* Pop-up style user messages */
void UserMessage(char * s,...);
/* Major error */
void ReportError(char * s, int fatal);
/* Normal Messages */
void Report(char * s);
/* Exit program */
void Exit(int status);
/* Log errors */
void LogFatalError(char *s);

/* Memory Allocation Functions */
void *New(SIZETYPE size);
void *ReAlloc(void *old, SIZETYPE newsize);
void Delete(void *ptr);

#ifdef DEBUG
extern int DebugFlag;
#endif

⌨️ 快捷键说明

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