File: error.h

package info (click to toggle)
slurm 0.3.3-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 860 kB
  • ctags: 226
  • sloc: sh: 3,491; ansic: 2,722; makefile: 54
file content (19 lines) | stat: -rw-r--r-- 411 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* $Id: error.h,v 1.1 2003/05/25 14:45:23 hscholz Exp $ */
#ifndef _ERROR_H
#define _ERROR_H

/* error type definition
 *
 * lower Byte identifies the error
 * upper Byte is reserved for future use
 *       (i.e. & 0x01ff to enable syslog logging)
 */

#define ERR_DEBUG	0x0001
#define ERR_NOTICE	0x0003
#define ERR_WARNING 0x0004
#define ERR_ERROR	0x0005
#define ERR_FATAL	0x0006
#define ERRBUF BUFSIZ

#endif