add ISC_R_ALREADYRUNNING

This commit is contained in:
Bob Halley
1999-07-14 02:03:04 +00:00
parent 7243506104
commit 55396fb3fb
2 changed files with 3 additions and 1 deletions

View File

@@ -60,8 +60,9 @@ ISC_LANG_BEGINDECLS
#define ISC_R_UNEXPECTEDTOKEN 32
#define ISC_R_QUOTA 33
#define ISC_R_UNEXPECTED 34
#define ISC_R_ALREADYRUNNING 35
#define ISC_R_NRESULTS 35 /* Number of results */
#define ISC_R_NRESULTS 36 /* Number of results */
char * isc_result_totext(isc_result_t);
isc_result_t isc_result_register(unsigned int base,

View File

@@ -76,6 +76,7 @@ static char *text[ISC_R_NRESULTS] = {
"unexpected token", /* 32 */
"quota reached", /* 33 */
"unexpected error", /* 34 */
"already running", /* 35 */
};
#define ISC_RESULT_RESULTSET 2