Changeset 177 for trunk/nom/class_c
- Timestamp:
- Jan 6, 2007, 2:29:09 PM (19 years ago)
- Location:
- trunk/nom/class_c
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/nom/class_c/nomclassmanager.c
r139 r177 119 119 g_datalist_init(&_gdataClassList); 120 120 121 // g_datalist_set_data(&_gdataClassList, mtab->nomClassName, classMtab);122 121 g_datalist_set_data_full(&_gdataClassList, mtab->nomClassName, classMtab, priv_handleClassRemove); 123 122 // g_datalist_set_data_full(&_gdataClassList, mtab->nomClassName, classMtab, priv_handleClassRemove); 124 // g_datalist_set_data_full(&_gdataClassList, mtab->nomClassName, classMtab, priv_handleClassRemove);125 nomPrintf("%s: registering %lx, %s classList: %lx\n", __FUNCTION__,classMtab, mtab->nomClassName, _gdataClassList);123 //nomPrintf("%s: registering %lx, %s classList: %lx\n", __FUNCTION__, 124 //classMtab, mtab->nomClassName, _gdataClassList); 126 125 } 127 126 … … 185 184 g_datalist_init(&_gdataMethodList); 186 185 187 // g_datalist_set_data(&_gdataClassList, mtab->nomClassName, classMtab);188 186 g_datalist_set_data_full(&_gdataMethodList, chrMethodName, classMtab, priv_handleMethodRemoveFromList); 189 // g_datalist_set_data_full(&_gdataClassList, mtab->nomClassName, classMtab, priv_handleClassRemove);190 187 //g_datalist_set_data_full(&_gdataClassList, mtab->nomClassName, classMtab, priv_handleClassRemove); 191 nomPrintf("%s: registering %lx, %s methodList: %lx\n", __FUNCTION__, classMtab, chrMethodName, _gdataMethodList);188 // nomPrintf("%s: registering %lx, %s methodList: %lx\n", __FUNCTION__, classMtab, chrMethodName, _gdataMethodList); 192 189 193 190 } … … 195 192 196 193 194 195 -
trunk/nom/class_c/nomcls.c
r101 r177 55 55 string nObj; 56 56 57 nomPrintf(" Entering %s (%x) with nomSelf: 0x%x. nomSelf is: %s.\n",58 57 //nomPrintf(" Entering %s (%x) with nomSelf: 0x%x. nomSelf is: %s.\n", 58 // __FUNCTION__, impl_NOMClass_nomNew, nomSelf, nomSelf->mtab->nomClassName); 59 59 60 60 if(!nomSelf) 61 61 return NULLHANDLE; 62 62 63 // nomPrintf("instanceVar: %x\n", _ncpObject);64 63 65 64 if(!_ncpObject) … … 67 66 68 67 ncp=(NOMClassPriv*)_ncpObject; 69 // nomPrintf("_ncpObject: %x size %d \n", ncp, ncp->mtab->ulInstanceSize);70 68 71 69 if((nObj=_nomAllocate(nomSelf, ncp->mtab->ulInstanceSize, NULLHANDLE))==NULLHANDLE) … … 134 132 NOMClassData* nomThis=NOMClassGetData(nomSelf); 135 133 136 nomPrintf(" Entering %s with nomSelf: 0x%x. nomSelf is: %s.\n",137 __FUNCTION__, nomSelf, nomSelf->mtab->nomClassName);134 //nomPrintf(" Entering %s with nomSelf: 0x%x. nomSelf is: %s.\n", 135 // __FUNCTION__, nomSelf, nomSelf->mtab->nomClassName); 138 136 139 137 _ncpObject=ncpObject; … … 224 222 *ncPriv->sci->nomSMethods[a].chrMethodDescriptor, NULLHANDLE); 225 223 } 226 nomPrintf("%s %s \n", nomSelf->mtab->nomClassName, ncPriv->mtab->nomClassName);224 //nomPrintf("%s %s \n", nomSelf->mtab->nomClassName, ncPriv->mtab->nomClassName); 227 225 _nomRegisterClass(NOMClassMgrObject, ncPriv->mtab, NULLHANDLE); 228 226 } … … 238 236 /* NOMClassData* nomThis=NOMClassGetData(nomSelf); */ 239 237 240 nomPrintf(" Entering %s with nomSelf: 0x%x. nomSelf is: %s.\n", 241 __FUNCTION__, nomSelf, nomSelf->mtab->nomClassName); 242 243 //#if 0 244 /* orbit-idl-c-stubs.c, VoyagerWriteProtoForParentCall line 84 */ 238 //nomPrintf(" Entering %s with nomSelf: 0x%x. nomSelf is: %s.\n", 239 // __FUNCTION__, nomSelf, nomSelf->mtab->nomClassName); 240 245 241 NOMClass_nomInit_parent(nomSelf, ev); 246 //#endif 247 } 242 } 243 -
trunk/nom/class_c/nomobj.c
r120 r177 48 48 NOM_Scope void NOMLINK impl_NOMObject_nomInit(NOMObject *nomSelf, CORBA_Environment *ev) 49 49 { 50 nomPrintf(" Entering %s (%x) with nomSelf: 0x%x. nomSelf is: %s.\n",51 50 //nomPrintf(" Entering %s (%x) with nomSelf: 0x%x. nomSelf is: %s.\n", 51 // __FUNCTION__, impl_NOMObject_nomInit, nomSelf , nomSelf->mtab->nomClassName); 52 52 } 53 53 … … 62 62 NOM_Scope CORBA_long NOMLINK impl_NOMObject_nomGetSize(NOMObject* nomSelf, CORBA_Environment *ev) 63 63 { 64 nomPrintf(" Entering %s (%x) with nomSelf: 0x%x. nomSelf is: %s.\n",65 __FUNCTION__, impl_NOMObject_nomGetSize, nomSelf , nomSelf->mtab->nomClassName);64 //nomPrintf(" Entering %s (%x) with nomSelf: 0x%x. nomSelf is: %s.\n", 65 // __FUNCTION__, impl_NOMObject_nomGetSize, nomSelf , nomSelf->mtab->nomClassName); 66 66 67 67 if(!nomSelf) {
Note:
See TracChangeset
for help on using the changeset viewer.