Unix and Linux Discussions Tagged with running |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
1 |
3,588 |
UNIX for Beginners Questions & Answers |
|
|
|
14 |
4,330 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
3,423 |
UNIX for Beginners Questions & Answers |
|
|
|
10 |
3,535 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
2,632 |
UNIX for Beginners Questions & Answers |
|
|
|
8 |
5,405 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
1,918 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
2,227 |
UNIX for Beginners Questions & Answers |
|
|
|
8 |
3,771 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
2,586 |
UNIX for Beginners Questions & Answers |
|
|
|
8 |
6,844 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
2,433 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
9,125 |
HP-UX |
|
|
|
12 |
4,612 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
1,434 |
UNIX for Beginners Questions & Answers |
|
|
|
9 |
2,980 |
UNIX for Advanced & Expert Users |
|
|
|
4 |
1,142 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
5,268 |
Shell Programming and Scripting |
|
|
|
3 |
1,611 |
Shell Programming and Scripting |
|
|
|
1 |
1,594 |
Shell Programming and Scripting |
|
|
|
2 |
2,061 |
AIX |
|
|
|
5 |
3,695 |
Shell Programming and Scripting |
|
|
|
1 |
1,119 |
Shell Programming and Scripting |
|
|
|
2 |
1,477 |
Shell Programming and Scripting |
|
|
|
3 |
3,242 |
AIX |
|
|
|
4 |
2,541 |
Shell Programming and Scripting |
|
|
|
2 |
3,520 |
UNIX for Advanced & Expert Users |
|
|
|
2 |
10,668 |
Shell Programming and Scripting |
|
|
|
2 |
7,896 |
Shell Programming and Scripting |
|
|
|
7 |
3,077 |
Shell Programming and Scripting |
|
|
|
0 |
3,735 |
Solaris BigAdmin RSS |
|
|
|
2 |
53,371 |
Shell Programming and Scripting |
|
|
|
0 |
4,591 |
Red Hat |
|
|
|
5 |
7,298 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
3,312 |
HP-UX |
|
|
|
1 |
5,361 |
Solaris |
|
|
|
2 |
3,560 |
UNIX for Dummies Questions & Answers |
|
|
|
5 |
8,106 |
Programming |
|
|
|
6 |
11,010 |
UNIX for Advanced & Expert Users |
|
|
|
3 |
4,327 |
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)