Unix and Linux Discussions Tagged with running |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
1 |
3,585 |
UNIX for Beginners Questions & Answers |
|
|
|
14 |
4,305 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
3,399 |
UNIX for Beginners Questions & Answers |
|
|
|
10 |
3,507 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
2,629 |
UNIX for Beginners Questions & Answers |
|
|
|
8 |
5,381 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
1,916 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
2,221 |
UNIX for Beginners Questions & Answers |
|
|
|
8 |
3,755 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
2,583 |
UNIX for Beginners Questions & Answers |
|
|
|
8 |
6,825 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
2,427 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
9,107 |
HP-UX |
|
|
|
12 |
4,597 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
1,422 |
UNIX for Beginners Questions & Answers |
|
|
|
9 |
2,969 |
UNIX for Advanced & Expert Users |
|
|
|
4 |
1,141 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
5,240 |
Shell Programming and Scripting |
|
|
|
3 |
1,604 |
Shell Programming and Scripting |
|
|
|
1 |
1,587 |
Shell Programming and Scripting |
|
|
|
2 |
2,053 |
AIX |
|
|
|
5 |
3,691 |
Shell Programming and Scripting |
|
|
|
1 |
1,119 |
Shell Programming and Scripting |
|
|
|
2 |
1,475 |
Shell Programming and Scripting |
|
|
|
3 |
3,236 |
AIX |
|
|
|
4 |
2,535 |
Shell Programming and Scripting |
|
|
|
2 |
3,517 |
UNIX for Advanced & Expert Users |
|
|
|
2 |
10,650 |
Shell Programming and Scripting |
|
|
|
2 |
7,876 |
Shell Programming and Scripting |
|
|
|
7 |
3,076 |
Shell Programming and Scripting |
|
|
|
0 |
3,734 |
Solaris BigAdmin RSS |
|
|
|
2 |
53,355 |
Shell Programming and Scripting |
|
|
|
0 |
4,589 |
Red Hat |
|
|
|
5 |
7,298 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
3,312 |
HP-UX |
|
|
|
1 |
5,355 |
Solaris |
|
|
|
2 |
3,553 |
UNIX for Dummies Questions & Answers |
|
|
|
5 |
8,105 |
Programming |
|
|
|
6 |
11,007 |
UNIX for Advanced & Expert Users |
|
|
|
3 |
4,325 |
Red Hat |
volmgt_running(3VOLMGT) Volume Management Library Functions volmgt_running(3VOLMGT)
NAME
volmgt_running - return whether or not Volume Management is running
SYNOPSIS
cc [ flag ... ] file ... -lvolmgt [ library ... ]
#include <volmgt.h>
int volmgt_running(void);
DESCRIPTION
volmgt_running() tells whether or not Volume Management is running.
RETURN VALUES
A non-zero value is returned if Volume Management is running, else 0 is returned.
ERRORS
volmgt_running() will fail, returning 0, if a stat(2) or open(2) of /dev/volctl fails, or if any of the following is true:
ENXIO Volume Management is not running.
EINTR An interrupt signal was detected while checking to see if Volume Management was running.
EXAMPLES
Example 1: Using volmgt_running()
To see if Volume Management is running:
if (volmgt_running() != 0) {
(void) printf("Volume Management is running
");
} else {
(void) printf("Volume Management is NOT running
");
}
ATTRIBUTES
See attributes(5) for descriptions of the following attributes:
+-----------------------------+-----------------------------+
| ATTRIBUTE TYPE | ATTRIBUTE VALUE |
+-----------------------------+-----------------------------+
|MT-Level |MT-Safe |
+-----------------------------+-----------------------------+
SEE ALSO
cc(1B), vold(1M), open(2), stat(2), volmgt_check(3VOLMGT), volmgt_inuse(3VOLMGT), attributes(5), volfs(7FS)
NOTES
Volume Management must be running for many of the Volume Management library routines to work.
SunOS 5.10 31 Dec 1996 volmgt_running(3VOLMGT)