示例#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);
 }