- Timestamp:
- 02/23/15 17:19:20 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
devel/5.X/pbs.i
r324 r326 38 38 * Convert Python batch status list to a valid C-linked list 39 39 */ 40 %typemap(in) struct batch_status * BATCH_STATUS{40 %typemap(in) struct batch_status *stat { 41 41 PyObject *py_obj; 42 42 struct batch_status *ptr, *prev; … … 151 151 * Convert Python attropl list to a valid C-linked list 152 152 */ 153 %typemap(in) struct attropl * ATTROPL{153 %typemap(in) struct attropl *attrib { 154 154 PyObject *py_obj; 155 155 struct attropl *ptr, *prev; … … 424 424 for (i=0; i < number; i++) 425 425 { 426 printf("constructor called\n");426 // printf("constructor called\n"); 427 427 current->name = (char *) malloc(MAXNAMLEN * sizeof(char)); 428 428 current->resource = (char *) malloc(MAXNAMLEN * sizeof(char)); … … 461 461 for (i=0; i < number; i++) 462 462 { 463 printf("constructor called\n");463 // printf("constructor called\n"); 464 464 current->name = (char *) malloc(MAXNAMLEN * sizeof(char)); 465 465 current->resource = (char *) malloc(MAXNAMLEN * sizeof(char));
Note: See TracChangeset
for help on using the changeset viewer.