#ifdef AIX_PROD
/* @(#)75	1.3  src/threads/dceerrno.h, threads.src, os2dce21.dss, 960602a.1  11/10/95  13:20:05 */
/*
 * COMPONENT_NAME: threads.src
 *
 * FUNCTIONS: 
 *
 * ORIGINS: 72
 *
 * OBJECT CODE ONLY SOURCE MATERIALS
 *
 */
#endif /* AIX_PROD */
/*******************************************************************

MODULE NAME: dceerrno.h

DESCRIPTIVE NAME: File with additional errnos for pthreads

(C) COPYRIGHT International Business Machines Corp. 1993
All Rights Reserved
Licensed Materials - Property of IBM

US Government Users Restricted Rights - Use, duplication or
disclosure restricted by GSA ADP Schedule Contract with IBM Corp.

FUNCTION: The pthreads APIs return some errno values that do not
	  exist in C-Set/2.  This file contains those errno constants.
	  It should be included after all other DCE header files.


*******************************************************************/

#ifndef _H_DCE_ERRNO
#define _H_DCE_ERRNO

#ifndef ESRCH
#define ESRCH 103
#endif

#ifndef EBUSY
#define EBUSY 116
#endif

#ifndef EDEADLK
#define EDEADLK 35
#endif

#endif /* _H_DCE_ERRNO */
