1 2 3 4 5 6 7 8 9 10 11 12
13 14 15
16
17 /*!
18 * ======== xdc.runtime.knl ========
19 * XDC Runtime support for OS-related primitives
20 */
21 package xdc.runtime.knl [1,0,0]
22 {
23 module GateH;
24 module Semaphore;
25 module Thread;
26 module Sync;
27
28 module GateThread;
29 module GateProcess;
30 module SemThread;
31 module SemProcess;
32 module SyncGeneric;
33 module SyncNull;
34 module SyncSemThread;
35 module Cache;
36 module CacheSupportNull;
37 module GateThreadSupportNull;
38 module GateProcessSupportNull;
39
40 interface ISemaphore;
41 interface ISync;
42
43 interface IGateThreadSupport;
44 interface IGateProcessSupport;
45 interface ISemThreadSupport;
46 interface ISemProcessSupport;
47 interface IThreadSupport;
48 interface ICacheSupport;
49 }
50 51 52
53