Changeset 8245 for trunk/psLib/src/types
- Timestamp:
- Aug 8, 2006, 4:26:44 PM (20 years ago)
- Location:
- trunk/psLib/src/types
- Files:
-
- 4 edited
-
psArguments.c (modified) (2 diffs)
-
psHash.c (modified) (3 diffs)
-
psMetadata.c (modified) (2 diffs)
-
psMetadataItemCompare.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/types/psArguments.c
r8232 r8245 7 7 * @author David Robbins, MHPCC 8 8 * 9 * @version $Revision: 1. 9$ $Name: not supported by cvs2svn $10 * @date $Date: 2006-08-0 8 23:32:23$9 * @version $Revision: 1.10 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2006-08-09 02:26:44 $ 11 11 * 12 12 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 156 156 157 157 for (int i = 1; i < *argc; i++) { 158 psTrace( __func__, 7, "Looking at %s\n", argv[i]);158 psTrace("psLib.types", 7, "Looking at %s\n", argv[i]); 159 159 psMetadataItem *argItem = psMetadataLookup(arguments, argv[i]); 160 160 if (argItem) { -
trunk/psLib/src/types/psHash.c
r8232 r8245 12 12 * @author GLG, MHPCC 13 13 * 14 * @version $Revision: 1.2 7$ $Name: not supported by cvs2svn $15 * @date $Date: 2006-08-0 8 23:32:23$14 * @version $Revision: 1.28 $ $Name: not supported by cvs2svn $ 15 * @date $Date: 2006-08-09 02:26:44 $ 16 16 * 17 17 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 148 148 table->n = nalloc; 149 149 150 psTrace(" utils.hash", 1, "Creating %d-element hash table\n", nalloc);150 psTrace("psLib.types", 1, "Creating %d-element hash table\n", nalloc); 151 151 152 152 // Initialize all buckets to NULL. … … 321 321 // We have found this key in the hash table. 322 322 323 psTrace(" utils.hash.insert", 3, "Replacing data for %s\n", key);323 psTrace("psLib.types", 3, "Replacing data for %s\n", key); 324 324 325 325 // NOTE: I have changed this behavior from the originally -
trunk/psLib/src/types/psMetadata.c
r8232 r8245 12 12 * @author Ross Harman, MHPCC 13 13 * 14 * @version $Revision: 1.12 1$ $Name: not supported by cvs2svn $15 * @date $Date: 2006-08-0 8 23:32:23$14 * @version $Revision: 1.122 $ $Name: not supported by cvs2svn $ 15 * @date $Date: 2006-08-09 02:26:44 $ 16 16 * 17 17 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 445 445 unsigned int flag = PS_META_REPLACE; // Flag to indicate MULTI; otherwise, replace 446 446 if (multiCheckItem->type == PS_DATA_METADATA_MULTI) { 447 psTrace( __func__, 10, "MULTI: %s (%s)\n", inItem->name, inItem->comment);447 psTrace("psLib.types", 10, "MULTI: %s (%s)\n", inItem->name, inItem->comment); 448 448 flag = PS_META_DUPLICATE_OK; 449 449 } 450 psTrace( __func__, 5, "Copying %s (%s)...\n", inItem->name, inItem->comment);450 psTrace("psLib.types", 5, "Copying %s (%s)...\n", inItem->name, inItem->comment); 451 451 452 452 // Copy the item and add it on -
trunk/psLib/src/types/psMetadataItemCompare.c
r8224 r8245 67 67 return false; 68 68 } 69 psTrace( __func__, 10, "Comparing '%s' with '%s'\n", compare->data.V, template->69 psTrace("psLib.types", 10, "Comparing '%s' with '%s'\n", compare->data.V, template-> 70 70 data.V); 71 71 return (strcasecmp(compare->data.V, template->
Note:
See TracChangeset
for help on using the changeset viewer.
