diff options
author | Michael J. Chudobiak <mjc@avtechpulse.com> | 2012-12-07 10:01:40 -0500 |
---|---|---|
committer | Michael J. Chudobiak <mjc@avtechpulse.com> | 2012-12-07 10:01:40 -0500 |
commit | 0140955d5e80254a03c9b3ce8b3046b162f65f2f (patch) | |
tree | 9958c1a81c38b6171837f43540b5c1a8c1932de6 /globals.h | |
parent | 1d5a0d1ea87880bf367a7ac56f7cda59297f36a3 (diff) |
added GPIB/VXI locking skeleton
Diffstat (limited to 'globals.h')
-rw-r--r-- | globals.h | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -779,6 +779,12 @@ typedef struct { } HWDetectStruct; +#define NO_SERVER_LOCKED -1 +typedef struct { + int command_in_progress; + int locked_network_server; +} LockStruct; + typedef struct { ConstraintsStruct Constraints; ChannelStruct ChannelState[max_channels]; @@ -793,6 +799,7 @@ typedef struct { MenuStatusStruct MenuStatus; RemoteStruct Remote; HWDetectStruct HWDetect; + LockStruct 4882Locks; } GlobalStruct; |