コード例 #1
0
ファイル: memp.cs プロジェクト: h7ga40/uITron3
 internal void memp_free(memp_t type, memp pcb)
 {
     System.Diagnostics.Debug.Assert(pcb._type == type);
     memp_heap.Remove(pcb);
 }
コード例 #2
0
ファイル: memp.cs プロジェクト: mxslcn/uITron3
 internal static void memset(memp pcb, int c, int length)
 {
     System.Diagnostics.Debug.Assert(c == 0);
     //System.Diagnostics.Debug.Assert(pcb._type == 0);
 }
コード例 #3
0
ファイル: memp.cs プロジェクト: h7ga40/uITron3
 internal static void memset(memp pcb, int c, int length)
 {
     System.Diagnostics.Debug.Assert(c == 0);
     //System.Diagnostics.Debug.Assert(pcb._type == 0);
 }
コード例 #4
0
ファイル: memp.cs プロジェクト: mxslcn/uITron3
 internal void memp_free(memp_t type, memp pcb)
 {
     System.Diagnostics.Debug.Assert(pcb._type == type);
     memp_heap.Remove(pcb);
 }