File:  [Research Unix] / researchv9 / ipc / src / mgrs / dkmgr / dkerr.c
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs
Tue Apr 24 17:21:59 2018 UTC (8 years, 1 month ago) by root
Branches: belllabs, MAIN
CVS tags: researchv9-SUN3_old, researchv9-SUN3, HEAD
researchv9-SUN3(old)

#include <errno.h>

/* imported */
extern int errno;
extern char *errstr;

char *msgs[] = {
	"DK controller system error",
	"destination busy",
	"remote node not answering",
	"destination not answering",
	"unassigned destination",
	"DK system overload",
	"server already exists",
	"call rejected by destination",
};

int errs[] = {
	EIO,
	EBUSY,
	EIO,
	EIO,
	ENOENT,
	EBUSY,
	EEXIST,
	EACCES,
};

/*
 *  Convert a Unix error code to a dk error code
 */
int
utodkerr(uerr)
{
#ifdef LINT
	printf("%d\n", uerr);
#endif
	return 7;
}

/*
 *  Convert a dk error code to a Unix errstr and errno
 */
dktouerr(dkerr)
{
	dkerr &= 0x7f;
	if (dkerr<=0 || dkerr>sizeof(errs)/sizeof(int)+1) {
		errno = EGREG;
		errstr = "unknown error";
		return;
	}
	errno = errs[dkerr];
	errstr = msgs[dkerr];
}

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.