unix-glue.sml
来自「这是我们参加06年全国开源软件的竞赛作品」· SML 代码 · 共 31 行
SML
31 行
(* unix-glue.sml * * COPYRIGHT (c) 1995 AT&T Bell Laboratories. * COPYRIGHT (c) 1989-1991 John H. Reppy * * The Glue for the UNIX version of CML. *)structure UnixGlue : OS_GLUE = struct fun init () = TimeOut.reset() fun pollOS () = ( TimeOut.pollTime(); IOManager.pollIO(); ProcManager.pollProcs()) fun pause () = (case TimeOut.anyWaiting() of NONE => if (IOManager.anyWaiting() orelse ProcManager.anyWaiting()) then (Signals.pause(); true) else false(** NOTE: eventually, we should just go to sleep for the specified time **) | (SOME t) => (Signals.pause(); true) (* end case *)) fun shutdown () = TimeOut.reset() end;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?