MCPcopy Create free account
hub / github.com/Kitware/CMake / kwsysProcessSetVMSFeature

Function kwsysProcessSetVMSFeature

Source/kwsys/ProcessUNIX.c:2635–2641  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2633int decc$feature_get_index(char const* name);
2634int decc$feature_set_value(int index, int mode, int value);
2635static int kwsysProcessSetVMSFeature(char const* name, int value)
2636{
2637 int i;
2638 errno = 0;
2639 i = decc$feature_get_index(name);
2640 return i >= 0 && (decc$feature_set_value(i, 1, value) >= 0 || errno == 0);
2641}
2642#endif
2643
2644/* Global set of executing processes for use by the signal handler.

Callers 1

kwsysProcess_ExecuteFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…