Add ISC_R_INPROGRESS (operation in progress)

This commit is contained in:
Brian Wellington
2001-02-12 20:03:16 +00:00
parent 29daf5bc77
commit a13ca8a125
2 changed files with 6 additions and 4 deletions

View File

@@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: result.h,v 1.55 2001/01/09 21:57:28 bwelling Exp $ */
/* $Id: result.h,v 1.56 2001/02/12 20:03:16 bwelling Exp $ */
#ifndef ISC_RESULT_H
#define ISC_RESULT_H 1
@@ -76,10 +76,11 @@
#define ISC_R_TOOMANYOPENFILES 50 /* too many open files */
#define ISC_R_NOTBLOCKING 51 /* not blocking */
#define ISC_R_UNBALANCEDQUOTES 52 /* unbalanced quotes */
#define ISC_R_INPROGRESS 53 /* operation in progress */
/*
* Not a result code: the number of results.
*/
#define ISC_R_NRESULTS 53
#define ISC_R_NRESULTS 54
ISC_LANG_BEGINDECLS

View File

@@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: result.c,v 1.54 2001/01/09 21:56:25 bwelling Exp $ */
/* $Id: result.c,v 1.55 2001/02/12 20:03:15 bwelling Exp $ */
#include <config.h>
@@ -90,7 +90,8 @@ static const char *text[ISC_R_NRESULTS] = {
"bad hex encoding", /* 49 */
"too many open files", /* 50 */
"not blocking", /* 51 */
"unbalanced quotes" /* 52 */
"unbalanced quotes", /* 52 */
"operation in progress" /* 53 */
};
#define ISC_RESULT_RESULTSET 2