Reflect routine name change from threadSuspend() to threadSuspendSelf().

This commit is contained in:
W. Eric Norum
2000-02-26 23:45:24 +00:00
parent 46dff5ec2b
commit 2ed0736bd0
7 changed files with 16 additions and 13 deletions
+2 -2
View File
@@ -45,7 +45,7 @@
* epicsAssert ()
*
* This forces assert failures into the log file and then
* calls threadSuspend() instead of exit() so that we can debug
* calls threadSuspendSelf() instead of exit() so that we can debug
* the problem.
*/
epicsShareFunc void epicsShareAPI epicsAssert (const char *pFile, const unsigned line, const char *pExp,
@@ -83,6 +83,6 @@ epicsShareFunc void epicsShareAPI epicsAssert (const char *pFile, const unsigned
}
epicsPrintf ("This problem occurred in \"%s\"\n", epicsReleaseVersion);
threadSuspend ();
threadSuspendSelf ();
}