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

📄 os-glue-sig.sml

📁 这是我们参加06年全国开源软件的竞赛作品
💻 SML
字号:
(* os-glue-sig.sml * * COPYRIGHT (c) 1995 AT&T Bell Laboratories. * COPYRIGHT (c) 1989-1991 John H. Reppy * * This is the interface to an OS specific module that glues the various * OS-specific scheduling operations together (i.e., timeouts, I/O, signals, * etc...). *)signature OS_GLUE =  sig    val init : unit -> unit	(* this function is called at start-up time *)    val pollOS : unit -> unit	(* this function is called at pre-emption points *)    val pause : unit -> bool	(* this function is called when there is nothing else to do.  It returns	 * false if there are no threads blocked on OS conditions.	 *)    val shutdown : unit -> unit	(* this function is called when the system is shuting down *)  end

⌨️ 快捷键说明

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