Imported Upstream version 0.4.8
[platform/upstream/libsmi.git] / mibs / tubs / TUBS-IBR-PROC-MIB
1 TUBS-IBR-PROC-MIB DEFINITIONS ::= BEGIN
2
3 -- @(#) $Id: TUBS-IBR-PROC-MIB 807 2000-02-12 11:52:35Z strauss $
4
5 IMPORTS
6     MODULE-IDENTITY, OBJECT-TYPE, Integer32
7         FROM SNMPv2-SMI
8     DisplayString, DateAndTime
9         FROM SNMPv2-TC
10     ibr
11         FROM TUBS-SMI;
12
13 procMIB MODULE-IDENTITY
14     LAST-UPDATED "200002090000Z"
15     ORGANIZATION "TU Braunschweig"
16     CONTACT-INFO
17         "Juergen Schoenwaelder
18          TU Braunschweig
19          Bueltenweg 74/75
20          38106 Braunschweig
21          Germany
22
23          Tel: +49 531 391 3283
24          Fax: +49 531 391 5936
25          E-mail: schoenw@ibr.cs.tu-bs.de"
26     DESCRIPTION
27         "Experimental MIB module for listing processes."
28     REVISION    "200002090000Z"
29     DESCRIPTION
30         "Updated IMPORTS and minor stylistic fixes."
31     REVISION    "9702141023Z"
32     DESCRIPTION
33         "Various cleanups to make the module conforming to SNMPv2 SMI."
34     REVISION    "9411152024Z"
35     DESCRIPTION
36         "The initial revision of this module."
37     ::= { ibr 3 }
38
39 procReload OBJECT-TYPE
40     SYNTAX      DateAndTime
41     MAX-ACCESS  read-write
42     STATUS      current
43     DESCRIPTION
44         "Any set operation will reload the process table.
45          It contains a time stamp when the proc table
46          was reloaded the last time."
47     ::= { procMIB 1 }
48
49 procTable OBJECT-TYPE
50     SYNTAX      SEQUENCE OF ProcEntry
51     MAX-ACCESS  not-accessible
52     STATUS      current
53     DESCRIPTION
54         "The process table."
55     ::= { procMIB 2 }
56
57 procEntry OBJECT-TYPE
58     SYNTAX      ProcEntry
59     MAX-ACCESS  not-accessible
60     STATUS      current
61     DESCRIPTION
62         "An entry for a process in the processes table."
63     INDEX { procID }
64     ::= { procTable 1 }
65
66 ProcEntry ::= SEQUENCE {
67     procID      Integer32,
68     procCmd     DisplayString
69 }
70
71 procID OBJECT-TYPE
72     SYNTAX      Integer32 (1..'7fffffff'h)
73     MAX-ACCESS  read-only
74     STATUS      current
75     DESCRIPTION
76         "The unique process ID."
77     ::= { procEntry 1 }
78
79 procCmd OBJECT-TYPE
80     SYNTAX      DisplayString
81     MAX-ACCESS  read-only
82     STATUS      current
83     DESCRIPTION
84         "The command name used to start this process."
85     ::= { procEntry 2 }
86
87 END