Changeset 11686 for trunk/psLib/src/sys/psError.c
- Timestamp:
- Feb 7, 2007, 1:52:54 PM (19 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/sys/psError.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/sys/psError.c
r11674 r11686 11 11 * @author Eric Van Alst, MHPCC 12 12 * 13 * @version $Revision: 1.4 4$ $Name: not supported by cvs2svn $14 * @date $Date: 2007-02-07 01:15:49$13 * @version $Revision: 1.45 $ $Name: not supported by cvs2svn $ 14 * @date $Date: 2007-02-07 23:52:54 $ 15 15 * 16 16 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 65 65 psArrayAdd(errorStack, 0, err); 66 66 } else { 67 psAbort( __func__,"attempt to exceed maximum error stack depth of %ld",67 psAbort("attempt to exceed maximum error stack depth of %ld", 68 68 (long)MAX_ERROR_STACK_SIZE); 69 69 } … … 78 78 // thread exits 79 79 if (pthread_key_create(&errorStack_key, psFreeWrapper)) { 80 psAbort( __func__, "pthread_key_create() failed");80 psAbort("pthread_key_create failed()"); 81 81 } 82 82 errorStackKeyInitialized = true; … … 95 95 // param 96 96 if (pthread_setspecific(errorStack_key, errorStack)) { 97 psAbort( __func__,"pthread_setspecific() failed");97 psAbort("pthread_setspecific() failed"); 98 98 } 99 99 }
Note:
See TracChangeset
for help on using the changeset viewer.
