├── .gitignore
├── Autobuild.csv
├── Development
├── LinuxRT-IPC.lvproj
├── NI Linux RT IPC.vipb
└── Testing
│ ├── C
│ ├── epoll test.vi
│ └── timerfd test.vi
│ ├── Pipes
│ ├── loopback cluster (in place).vi
│ ├── loopback cluster.vi
│ └── pipe writer.vi
│ └── Shared Memory
│ └── Array Test.vi
├── Examples
└── Shared Memory
│ └── Simple Shared Memory
│ ├── C Executables
│ ├── SimpleSharedMemory_ARM
│ └── SimpleSharedMemory_x64
│ ├── C Source Code
│ └── SimpleSharedMemory.c
│ ├── Instructions.html
│ ├── Instructions_files
│ ├── colorschememapping.xml
│ ├── filelist.xml
│ ├── image001.png
│ ├── image002.png
│ ├── image003.png
│ ├── image005.png
│ ├── image007.png
│ ├── image008.png
│ ├── image009.png
│ ├── item0013.xml
│ ├── props014.xml
│ └── themedata.thmx
│ ├── Simple Shared Memory.lvproj
│ └── Simple Shared Memory.vi
├── LICENSE
├── README.md
└── Source
├── C
├── C Functions
│ ├── close.vi
│ ├── epoll_create.vi
│ ├── epoll_ctl.vi
│ ├── epoll_wait.vi
│ ├── fstat.vi
│ ├── ftruncate.vi
│ ├── getpagesize.vi
│ ├── mkfifo.vi
│ ├── mmap.vi
│ ├── munmap.vi
│ ├── open.vi
│ ├── read (in place).vi
│ ├── read.vi
│ ├── shm_open.vi
│ ├── shm_unlink.vi
│ ├── timerfd_create.vi
│ ├── timerfd_gettime.vi
│ ├── timerfd_settime.vi
│ ├── unlink.vi
│ └── write.vi
├── Controls
│ ├── C Types
│ │ ├── blkcnt_t_32.ctl
│ │ ├── blkcnt_t_64.ctl
│ │ ├── blksize_t_32.ctl
│ │ ├── blksize_t_64.ctl
│ │ ├── dev_t.ctl
│ │ ├── gid_t.ctl
│ │ ├── ino_t_32.ctl
│ │ ├── ino_t_64.ctl
│ │ ├── mode_t.ctl
│ │ ├── nlink_t_32.ctl
│ │ ├── nlink_t_64.ctl
│ │ ├── off_t_32.ctl
│ │ ├── off_t_64.ctl
│ │ ├── stat_32.ctl
│ │ ├── stat_64.ctl
│ │ ├── time_t_32.ctl
│ │ ├── time_t_64.ctl
│ │ └── uid_t.ctl
│ ├── epoll event struct.ctl
│ ├── epoll events.ctl
│ ├── epoll operations.ctl
│ ├── file creation flags.ctl
│ ├── file status flags.ctl
│ ├── functions.ctl
│ ├── mman sharing.ctl
│ ├── permissions group.ctl
│ └── permissions.ctl
├── Linux RT IPC.C.lvlib
└── SubVIs
│ ├── OR flags U32.vi
│ ├── check for try again.vi
│ ├── error handler.vi
│ ├── path globals.vi
│ ├── permission group to mode_t.vi
│ └── stat 32 to stat 64.vi
├── POSIX Threads
├── Classes
│ ├── Barrier Attr
│ │ ├── Barrier Attr.lvclass
│ │ ├── Controls
│ │ │ └── reference.ctl
│ │ └── Public VIs
│ │ │ ├── Barrier Attr Create Object.vi
│ │ │ ├── Barrier Attr Delete Object.vi
│ │ │ ├── Barrier Attr Destroy.vi
│ │ │ ├── Barrier Attr Get Process.vi
│ │ │ ├── Barrier Attr Init.vi
│ │ │ ├── Barrier Attr Set Process.vi
│ │ │ └── Barrier Attr Size.vi
│ ├── Barrier
│ │ ├── Barrier.lvclass
│ │ ├── Controls
│ │ │ └── reference.ctl
│ │ └── Public VIs
│ │ │ ├── Barrier Create Object.vi
│ │ │ ├── Barrier Delete Object.vi
│ │ │ ├── Barrier Destroy.vi
│ │ │ ├── Barrier Init.vi
│ │ │ ├── Barrier Size.vi
│ │ │ └── Barrier Wait.vi
│ ├── Cond Attr
│ │ ├── Cond Attr.lvclass
│ │ ├── Controls
│ │ │ └── reference.ctl
│ │ ├── Public VIs
│ │ │ ├── Cond Attr Create Object.vi
│ │ │ ├── Cond Attr Delete Object.vi
│ │ │ ├── Cond Attr Destroy.vi
│ │ │ ├── Cond Attr Get Clock.vi
│ │ │ ├── Cond Attr Get Process.vi
│ │ │ ├── Cond Attr Init.vi
│ │ │ ├── Cond Attr Set Clock.vi
│ │ │ ├── Cond Attr Set Process.vi
│ │ │ └── Cond Attr Size.vi
│ │ └── Templates
│ │ │ └── cond attr.vit
│ ├── Cond
│ │ ├── Accessors
│ │ │ ├── Read clock id.vi
│ │ │ └── Write clock id.vi
│ │ ├── Cond.lvclass
│ │ ├── Controls
│ │ │ └── reference.ctl
│ │ ├── Public VIs
│ │ │ ├── Cond Broadcast.vi
│ │ │ ├── Cond Create Object.vi
│ │ │ ├── Cond Delete Object.vi
│ │ │ ├── Cond Destroy.vi
│ │ │ ├── Cond Init.vi
│ │ │ ├── Cond Signal.vi
│ │ │ ├── Cond Size.vi
│ │ │ ├── Cond Timed Wait (absolute nanoseconds).vi
│ │ │ ├── Cond Timed Wait (absolute seconds).vi
│ │ │ ├── Cond Timed Wait (absolute timespec).vi
│ │ │ ├── Cond Timed Wait (relative nanoseconds).vi
│ │ │ ├── Cond Timed Wait (relative seconds).vi
│ │ │ ├── Cond Timed Wait.vi
│ │ │ └── Cond Wait.vi
│ │ └── Templates
│ │ │ ├── cond with attr.vit
│ │ │ ├── cond with mutex.vit
│ │ │ └── cond.vit
│ ├── Mutex Attr
│ │ ├── Controls
│ │ │ └── reference.ctl
│ │ ├── Mutex Attr.lvclass
│ │ ├── Public VIs
│ │ │ ├── Mutex Attr Create Object.vi
│ │ │ ├── Mutex Attr Delete Object.vi
│ │ │ ├── Mutex Attr Destroy.vi
│ │ │ ├── Mutex Attr Get Mutex Type.vi
│ │ │ ├── Mutex Attr Get Priority Ceiling.vi
│ │ │ ├── Mutex Attr Get Process.vi
│ │ │ ├── Mutex Attr Get Protocol.vi
│ │ │ ├── Mutex Attr Init.vi
│ │ │ ├── Mutex Attr Set Mutex Type.vi
│ │ │ ├── Mutex Attr Set Priority Ceiling.vi
│ │ │ ├── Mutex Attr Set Process.vi
│ │ │ ├── Mutex Attr Set Protocol.vi
│ │ │ └── Mutex Attr Size.vi
│ │ └── Templates
│ │ │ └── mutex attr.vit
│ ├── Mutex
│ │ ├── Controls
│ │ │ └── reference.ctl
│ │ ├── Mutex.lvclass
│ │ ├── Public VIs
│ │ │ ├── Mutex Create Object.vi
│ │ │ ├── Mutex Delete Object.vi
│ │ │ ├── Mutex Destroy.vi
│ │ │ ├── Mutex Get Priority Ceiling.vi
│ │ │ ├── Mutex Init.vi
│ │ │ ├── Mutex Lock.vi
│ │ │ ├── Mutex Set Priority Ceiling.vi
│ │ │ ├── Mutex Size.vi
│ │ │ ├── Mutex Timed Lock (absolute nanoseconds).vi
│ │ │ ├── Mutex Timed Lock (absolute seconds).vi
│ │ │ ├── Mutex Timed Lock (absolute timespec).vi
│ │ │ ├── Mutex Timed Lock (relative nanoseconds).vi
│ │ │ ├── Mutex Timed Lock (relative seconds).vi
│ │ │ ├── Mutex Timed Lock.vi
│ │ │ ├── Mutex Try Lock.vi
│ │ │ └── Mutex Unlock.vi
│ │ └── Templates
│ │ │ ├── mutex with attr.vit
│ │ │ └── mutex.vit
│ ├── POSIX Thread Object
│ │ ├── Accessors
│ │ │ ├── Read pointer.vi
│ │ │ └── Write pointer.vi
│ │ ├── C Functions
│ │ │ ├── pthread_barrier_destroy.vi
│ │ │ ├── pthread_barrier_init.vi
│ │ │ ├── pthread_barrier_wait.vi
│ │ │ ├── pthread_barrierattr_destroy.vi
│ │ │ ├── pthread_barrierattr_getpshared.vi
│ │ │ ├── pthread_barrierattr_init.vi
│ │ │ ├── pthread_barrierattr_setpshared.vi
│ │ │ ├── pthread_cond_broadcast.vi
│ │ │ ├── pthread_cond_destroy.vi
│ │ │ ├── pthread_cond_init.vi
│ │ │ ├── pthread_cond_signal.vi
│ │ │ ├── pthread_cond_timedwait.vi
│ │ │ ├── pthread_cond_wait.vi
│ │ │ ├── pthread_condattr_destroy.vi
│ │ │ ├── pthread_condattr_getclock.vi
│ │ │ ├── pthread_condattr_getpshared.vi
│ │ │ ├── pthread_condattr_init.vi
│ │ │ ├── pthread_condattr_setclock.vi
│ │ │ ├── pthread_condattr_setpshared.vi
│ │ │ ├── pthread_mutex_destroy.vi
│ │ │ ├── pthread_mutex_getprioceiling.vi
│ │ │ ├── pthread_mutex_init.vi
│ │ │ ├── pthread_mutex_lock.vi
│ │ │ ├── pthread_mutex_setprioceiling.vi
│ │ │ ├── pthread_mutex_timedlock.vi
│ │ │ ├── pthread_mutex_trylock.vi
│ │ │ ├── pthread_mutex_unlock.vi
│ │ │ ├── pthread_mutexattr_destroy.vi
│ │ │ ├── pthread_mutexattr_getprioceiling.vi
│ │ │ ├── pthread_mutexattr_getprotocol.vi
│ │ │ ├── pthread_mutexattr_getpshared.vi
│ │ │ ├── pthread_mutexattr_gettype.vi
│ │ │ ├── pthread_mutexattr_init.vi
│ │ │ ├── pthread_mutexattr_setprioceiling.vi
│ │ │ ├── pthread_mutexattr_setprotocol.vi
│ │ │ ├── pthread_mutexattr_setpshared.vi
│ │ │ ├── pthread_mutexattr_settype.vi
│ │ │ ├── sem_destroy.vi
│ │ │ ├── sem_getvalue.vi
│ │ │ ├── sem_init.vi
│ │ │ ├── sem_open.vi
│ │ │ ├── sem_post.vi
│ │ │ ├── sem_timedwait.vi
│ │ │ ├── sem_trywait.vi
│ │ │ └── sem_wait.vi
│ │ ├── Controls
│ │ │ ├── pthread functions.ctl
│ │ │ └── reference.ctl
│ │ ├── POSIX Thread Object.lvclass
│ │ └── Private VIs
│ │ │ ├── get pthread error.vi
│ │ │ └── libpthread path.vi
│ └── Semaphore
│ │ ├── Controls
│ │ └── reference.ctl
│ │ ├── Public VIs
│ │ ├── Semaphore Create Object.vi
│ │ ├── Semaphore Delete Object.vi
│ │ ├── Semaphore Destroy.vi
│ │ ├── Semaphore Get Value.vi
│ │ ├── Semaphore Init.vi
│ │ ├── Semaphore Open.vi
│ │ ├── Semaphore Post.vi
│ │ ├── Semaphore Size.vi
│ │ ├── Semaphore Timed Wait (absolute seconds).vi
│ │ ├── Semaphore Timed Wait (absolute timespec).vi
│ │ ├── Semaphore Timed Wait (relative nanoseconds).vi
│ │ ├── Semaphore Timed Wait (relative seconds).vi
│ │ ├── Semaphore Timed Wait.vi
│ │ ├── Semaphore Try Wait.vi
│ │ ├── Semaphore Wait.vi
│ │ └── sem.vit
│ │ └── Semaphore.lvclass
├── Controls
│ └── Public
│ │ └── C Enums
│ │ ├── pthread_mutex_type.ctl
│ │ ├── pthread_priority_protocol.ctl
│ │ └── pthread_process_shared.ctl
└── Linux RT IPC.POSIX Threads.lvlib
├── Pipes
├── Classes
│ ├── Unix Pipe Reader
│ │ ├── Accessors
│ │ │ ├── Read epoll fd.vi
│ │ │ ├── Read timer fd.vi
│ │ │ ├── Write epoll fd.vi
│ │ │ └── Write timer fd.vi
│ │ ├── Close Pipe (reader).vi
│ │ ├── Open Pipe (reader).vi
│ │ ├── Read (In Place).vi
│ │ ├── Read.vi
│ │ └── Unix Pipe Reader.lvclass
│ ├── Unix Pipe Writer
│ │ ├── Close Pipe (writer).vi
│ │ ├── Open Pipe (writer).vi
│ │ ├── Unix Pipe Writer.lvclass
│ │ └── Write.vi
│ └── Unix Pipe
│ │ ├── Accessors
│ │ ├── Read file descriptor.vi
│ │ ├── Read pathname.vi
│ │ ├── Write file descriptor.vi
│ │ └── Write pathname.vi
│ │ └── Unix Pipe.lvclass
├── Linux RT IPC.Pipes.lvlib
└── VIs
│ ├── Close Pipe.vi
│ ├── Create Pipe.vi
│ ├── Open Pipe.vi
│ └── Remove Pipe.vi
└── Shared Memory
├── Classes
└── Shared Memory
│ ├── Accessors
│ ├── Read access mode.vi
│ ├── Read currently mapped.vi
│ ├── Read file descriptor open.vi
│ ├── Read file descriptor.vi
│ ├── Read permissions.vi
│ ├── Read pointer.vi
│ ├── Read shm filename.vi
│ ├── Read size.vi
│ ├── Write access mode.vi
│ ├── Write currently mapped.vi
│ ├── Write file descriptor open.vi
│ ├── Write file descriptor.vi
│ ├── Write permissions.vi
│ ├── Write pointer.vi
│ ├── Write shm filename.vi
│ └── Write size.vi
│ ├── Shared Memory.lvclass
│ └── VIs
│ ├── Check Name.vi
│ ├── Close File Descriptor.vi
│ ├── Close Shared Memory File.vi
│ ├── Get Shared Memory Size.vi
│ ├── Get System Page Size.vi
│ ├── Map Memory.vi
│ ├── Map Shared Memory.vi
│ ├── Open File.vi
│ ├── Open Shared Memory File.vi
│ ├── Remove Shared Memory File.vi
│ ├── Set Shared Memory Size.vi
│ ├── Unmap Memory.vi
│ └── Unmap Shared Memory.vi
├── Controls
├── file mode.ctl
└── reference.ctl
├── Linux RT IPC.Shared Memory.lvlib
├── Pointer Operations
├── In Place Read 1D Array Boolean.vi
├── In Place Read 1D Array DBL.vi
├── In Place Read 1D Array I16.vi
├── In Place Read 1D Array I32.vi
├── In Place Read 1D Array I64.vi
├── In Place Read 1D Array I8.vi
├── In Place Read 1D Array SGL.vi
├── In Place Read 1D Array U16.vi
├── In Place Read 1D Array U32.vi
├── In Place Read 1D Array U64.vi
├── In Place Read 1D Array U8.vi
├── In Place Read Pointer.vi
├── In Place Read Scalar Boolean.vi
├── In Place Read Scalar DBL.vi
├── In Place Read Scalar I16.vi
├── In Place Read Scalar I32.vi
├── In Place Read Scalar I64.vi
├── In Place Read Scalar I8.vi
├── In Place Read Scalar SGL.vi
├── In Place Read Scalar U16.vi
├── In Place Read Scalar U32.vi
├── In Place Read Scalar U64.vi
├── In Place Read Scalar U8.vi
├── In Place Read String.vi
├── In Place Write 1D Array Boolean.vi
├── In Place Write 1D Array DBL.vi
├── In Place Write 1D Array I16.vi
├── In Place Write 1D Array I32.vi
├── In Place Write 1D Array I64.vi
├── In Place Write 1D Array I8.vi
├── In Place Write 1D Array SGL.vi
├── In Place Write 1D Array U16.vi
├── In Place Write 1D Array U32.vi
├── In Place Write 1D Array U64.vi
├── In Place Write 1D Array U8.vi
├── In Place Write Pointer.vi
├── In Place Write String.vi
├── Read 1D Array Boolean.vi
├── Read 1D Array DBL.vi
├── Read 1D Array I16.vi
├── Read 1D Array I32.vi
├── Read 1D Array I64.vi
├── Read 1D Array I8.vi
├── Read 1D Array SGL.vi
├── Read 1D Array U16.vi
├── Read 1D Array U32.vi
├── Read 1D Array U64.vi
├── Read 1D Array U8.vi
├── Read Pointer.vi
├── Read Scalar Boolean.vi
├── Read Scalar DBL.vi
├── Read Scalar I16.vi
├── Read Scalar I32.vi
├── Read Scalar I64.vi
├── Read Scalar I8.vi
├── Read Scalar SGL.vi
├── Read Scalar U16.vi
├── Read Scalar U32.vi
├── Read Scalar U64.vi
├── Read Scalar U8.vi
├── Read String.vi
├── Write 1D Array Boolean.vi
├── Write 1D Array DBL.vi
├── Write 1D Array I16.vi
├── Write 1D Array I32.vi
├── Write 1D Array I64.vi
├── Write 1D Array I8.vi
├── Write 1D Array SGL.vi
├── Write 1D Array U16.vi
├── Write 1D Array U32.vi
├── Write 1D Array U64.vi
├── Write 1D Array U8.vi
├── Write Pointer.vi
├── Write Scalar Boolean.vi
├── Write Scalar DBL.vi
├── Write Scalar I16.vi
├── Write Scalar I32.vi
├── Write Scalar I64.vi
├── Write Scalar I8.vi
├── Write Scalar SGL.vi
├── Write Scalar U16.vi
├── Write Scalar U32.vi
├── Write Scalar U64.vi
├── Write Scalar U8.vi
└── Write String.vi
└── Templates
├── Basic Scalar Write-Read.vi
└── Initialize Shared Memory.vi
/.gitignore:
--------------------------------------------------------------------------------
1 | # Libraries
2 | *.lvlibp
3 | *.llb
4 |
5 | # Shared objects (inc. Windows DLLs)
6 | *.dll
7 | *.so
8 | *.so.*
9 | *.dylib
10 |
11 | # Executables
12 | *.exe
13 |
14 | # Metadata
15 | *.aliases
16 | *.lvlps
17 |
--------------------------------------------------------------------------------
/Autobuild.csv:
--------------------------------------------------------------------------------
1 | vipb Development\NI Linux RT Inter-Process Communication.vipb testinstall upload=platypus
--------------------------------------------------------------------------------
/Development/LinuxRT-IPC.lvproj:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
-
5 | Linux RT CompactRIO
6 | 0.0.0.0
7 | TARGET_TYPE,RT;OS,Linux;CPU,ARM;DeviceCode,76D6;
8 | 76D6
9 | ARMLinux
10 | true
11 | 5000
12 | 1000
13 | 8
14 | 8
15 | false
16 | 300
17 | 80
18 | 60
19 |
20 | 100
21 | false
22 | 10000
23 | 0
24 | 0
25 | true
26 | true
27 | true
28 | 8001
29 | /c/ni-rt/startup/startup.rtexe
30 | true
31 | +*
32 | false
33 | /home/lvuser/natinst/bin
34 | true
35 | true
36 | +*
37 | false
38 | true
39 | 3363
40 | Main Application Instance/VI Server
41 | Main Application Instance/VI Server
42 | +*
43 | true
44 | true
45 | Listen 8000
46 |
47 | NI.ServerName default
48 | DocumentRoot "$LVSERVER_DOCROOT"
49 | TypesConfig "$LVSERVER_CONFIGROOT/mime.types"
50 | DirectoryIndex index.htm
51 | WorkerLimit 10
52 | InactivityTimeout 60
53 |
54 | LoadModulePath "$LVSERVER_MODULEPATHS"
55 | LoadModule LVAuth lvauthmodule
56 | LoadModule LVRFP lvrfpmodule
57 |
58 | #
59 | # Pipeline Definition
60 | #
61 |
62 | SetConnector netConnector
63 |
64 | AddHandler LVAuth
65 | AddHandler LVRFP
66 |
67 | AddHandler fileHandler ""
68 |
69 | AddOutputFilter chunkFilter
70 |
71 |
72 |
73 | false
74 | false
75 | /c/ni-rt/system/www/www.log
76 | 80
77 | /c/ni-rt/system/www
78 | c+*
79 | 60
80 | +*
81 | PqVr/ifkAQh+lVrdPIykXlFvg12GhhQFR8H9cUhphgg=:pTe9HRlQuMfJxAG6QCGq7UvoUpJzAzWGKy5SbZ+roSU=
82 | 15
83 |
84 |
85 |
86 | -
87 | Linux RT myRIO
88 | 0.0.0.0
89 | TARGET_TYPE,RT;OS,Linux;CPU,ARM;DeviceCode,762F;
90 | 762F
91 | true
92 | 5000
93 | 1000
94 | 8
95 | 8
96 | false
97 | 300
98 | 80
99 | 60
100 |
101 | 100
102 | false
103 | 10000
104 | 0
105 | 0
106 | true
107 | true
108 | true
109 | 8001
110 | /c/ni-rt/startup/startup.rtexe
111 | true
112 | +*
113 | false
114 | /home/lvuser/natinst/bin
115 | true
116 | true
117 | +*
118 | false
119 | true
120 | 3363
121 | Main Application Instance/VI Server
122 | Main Application Instance/VI Server
123 | +*
124 | true
125 | true
126 | false
127 | false
128 | /c/ni-rt/system/www/www.log
129 | 80
130 | /c/ni-rt/system/www
131 | c+*
132 | 60
133 | +*
134 | PqVr/ifkAQh+lVrdPIykXlFvg12GhhQFR8H9cUhphgg=:pTe9HRlQuMfJxAG6QCGq7UvoUpJzAzWGKy5SbZ+roSU=
135 | 15
136 |
-
137 | fpga
138 | RIO0
139 | myRIO-1900
140 |
141 |
142 |
143 |
144 | -
145 | Linux RT Single-Board RIO
146 | 0.0.0.0
147 | TARGET_TYPE,RT;OS,Linux;CPU,ARM;DeviceCode,77D5;
148 | 77D5
149 | true
150 | 5000
151 | 1000
152 | 8
153 | 8
154 | false
155 | 300
156 | 80
157 | 60
158 |
159 | 100
160 | false
161 | 10000
162 | 0
163 | 0
164 | true
165 | true
166 | true
167 | 8001
168 | /c/ni-rt/startup/startup.rtexe
169 | true
170 | +*
171 | false
172 | /home/lvuser/natinst/bin
173 | true
174 | true
175 | +*
176 | false
177 | true
178 | 3363
179 | Main Application Instance/VI Server
180 | Main Application Instance/VI Server
181 | +*
182 | true
183 | true
184 | false
185 | false
186 | /c/ni-rt/system/www/www.log
187 | 80
188 | /c/ni-rt/system/www
189 | c+*
190 | 60
191 | +*
192 | PqVr/ifkAQh+lVrdPIykXlFvg12GhhQFR8H9cUhphgg=:pTe9HRlQuMfJxAG6QCGq7UvoUpJzAzWGKy5SbZ+roSU=
193 | 15
194 |
-
195 | fpga
196 | RIO0
197 | sbRIO-9627
198 |
199 |
200 |
201 |
202 |
203 | -
204 | true
205 | true
206 | false
207 | 0
208 | My Computer/VI Server
209 | My Computer/VI Server
210 | true
211 | true
212 | false
213 |
-
214 |
215 |
216 |
217 |
218 |
219 | -
220 |
-
221 |
222 |
223 |
224 |
225 | -
226 |
-
227 |
228 |
229 |
230 | -
231 |
232 |
233 |
234 |
235 | -
236 |
237 |
238 |
239 |
240 | -
241 |
-
242 |
243 |
244 |
245 |
246 |
247 |
248 |
249 |
250 |
251 |
252 |
253 |
254 |
255 |
256 |
257 |
258 |
259 |
260 |
261 |
262 |
263 |
264 |
265 |
266 |
267 |
268 |
269 |
270 |
271 |
272 |
273 |
274 |
275 |
276 |
277 |
278 |
279 |
280 |
281 |
--------------------------------------------------------------------------------
/Development/Testing/C/epoll test.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Development/Testing/C/epoll test.vi
--------------------------------------------------------------------------------
/Development/Testing/C/timerfd test.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Development/Testing/C/timerfd test.vi
--------------------------------------------------------------------------------
/Development/Testing/Pipes/loopback cluster (in place).vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Development/Testing/Pipes/loopback cluster (in place).vi
--------------------------------------------------------------------------------
/Development/Testing/Pipes/loopback cluster.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Development/Testing/Pipes/loopback cluster.vi
--------------------------------------------------------------------------------
/Development/Testing/Pipes/pipe writer.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Development/Testing/Pipes/pipe writer.vi
--------------------------------------------------------------------------------
/Development/Testing/Shared Memory/Array Test.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Development/Testing/Shared Memory/Array Test.vi
--------------------------------------------------------------------------------
/Examples/Shared Memory/Simple Shared Memory/C Executables/SimpleSharedMemory_ARM:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Examples/Shared Memory/Simple Shared Memory/C Executables/SimpleSharedMemory_ARM
--------------------------------------------------------------------------------
/Examples/Shared Memory/Simple Shared Memory/C Executables/SimpleSharedMemory_x64:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Examples/Shared Memory/Simple Shared Memory/C Executables/SimpleSharedMemory_x64
--------------------------------------------------------------------------------
/Examples/Shared Memory/Simple Shared Memory/C Source Code/SimpleSharedMemory.c:
--------------------------------------------------------------------------------
1 | /*
2 | * SimpleSharedMemory.c
3 | *
4 | * Created on: Jan 17, 2017
5 | * Author: Administrator
6 | */
7 |
8 | #define _GNU_SOURCE
9 |
10 | #include
11 | #include
12 | #include
13 | #include
14 | #include
15 | #include
16 | #include
17 | #include
18 | #include
19 | #include
20 |
21 | #define SHM "/simple"
22 | #define PATH "/dev/shm/simple"
23 | #define BILLION 1000000000
24 |
25 | /* Print Colors */
26 | #define TRED "\x1B[31m"
27 | #define TNORM "\x1B[0m"
28 | #define TGREEN "\x1B[32m"
29 | #define TCYAN "\x1B[36m"
30 |
31 | // addTimes adds second timespec to first timespec
32 | void addTimes(struct timespec *time, struct timespec add){
33 | time->tv_sec += add.tv_sec;
34 | time->tv_nsec += add.tv_nsec;
35 |
36 | if(time->tv_nsec > BILLION){
37 | time->tv_nsec -= BILLION;
38 | time->tv_sec += 1;
39 | }
40 | }
41 |
42 | // Calculates the difference, in seconds, between two timespecs.
43 | double timeDiff(struct timespec *startTp, struct timespec *finishTp){
44 | double start = startTp->tv_sec + ((double) startTp->tv_nsec) / BILLION;
45 | double finish = finishTp->tv_sec + ((double) finishTp->tv_nsec) / BILLION;
46 | return (finish - start);
47 | }
48 |
49 | void printWithStatus(const char *prefix, int occurred){
50 | printf("%s", prefix);
51 |
52 | if(occurred)
53 | printf("%sFailed.%s\n", TRED, TNORM);
54 | else
55 | printf("%sSuccess.%s\n", TGREEN, TNORM);
56 | }
57 |
58 | int main(int argc, char *argv[]){
59 | // Variables for loops, logic, etc.
60 | double remainder;
61 | int ret;
62 |
63 | // Structures for timing
64 | struct timespec tp, prev, now, periodTp, timeout, timeoutDuration;
65 | periodTp.tv_sec = 0;
66 | periodTp.tv_nsec = 10000000; // 10,000,000 nanoseconds = 10 ms
67 | timeoutDuration.tv_sec = 10; // Use timeout of 10 seconds for waiting on LabVIEW.
68 |
69 | // Clear terminal.
70 | printf("\033c");
71 |
72 | // Lock the process to core 1.
73 | cpu_set_t cpu;
74 | CPU_ZERO(&cpu);
75 | CPU_SET(1, &cpu);
76 | printf("Setting CPU Affinity to CPU%d... ", 1);
77 | ret = sched_setaffinity(0, sizeof(cpu_set_t), &cpu);
78 | printWithStatus("", ret);
79 |
80 | // Elevate this process to highest priority.
81 | struct sched_param params;
82 | params.sched_priority = 99;
83 | printf("Setting thread priority to %d... ", 99);
84 | ret = pthread_setschedparam(pthread_self(), SCHED_FIFO, ¶ms);
85 | printWithStatus("", ret);
86 |
87 | // Wait for LabVIEW to create shared memory by checking if it exists.
88 | printf("Waiting for LabVIEW to create shared memory...\n");
89 | clock_gettime(CLOCK_MONOTONIC, &timeout);
90 | addTimes(&timeout, timeoutDuration);
91 |
92 | do{
93 | // Get current time.
94 | clock_gettime(CLOCK_MONOTONIC, &tp);
95 |
96 | // Get remainder until timeout occurs.
97 | remainder = timeDiff(&tp, &timeout);
98 | printf("\rTimeout: %1.2f \n", remainder); // Adding new line tells terminal to print immediately.
99 | printf("\033[1A"); // Move backup one line to overwrite previous line.
100 |
101 | if(remainder < 0)
102 | break;
103 |
104 | addTimes(&tp, periodTp);
105 | clock_nanosleep(CLOCK_MONOTONIC, TIMER_ABSTIME, &tp, NULL);
106 | } while(access(PATH, F_OK) != 0);
107 |
108 | // Exit application if timeout was reached.
109 | if(remainder < 0){
110 | printf("\rLabVIEW did not create shared memory within timeout period. Exiting.\n\n");
111 | return 0;
112 | }
113 | else;
114 | //printf("\rShared memory file detected. Opening file descriptor to %s... ", SHM);
115 |
116 | // Open file descriptor to shared memory.
117 | int fd = shm_open(SHM, O_RDWR, (mode_t) 0777);
118 | printWithStatus("\rShared memory file detected.\nOpening file descriptor... ", (fd < 0));
119 |
120 | // Map memory from shared memory to application memory.
121 | void *mmapPointer = mmap(NULL, 4096, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
122 | printWithStatus("Mapping memory... ", (mmapPointer == (void *) -1));
123 |
124 | // Since file descriptor is no longer needed after mmap, close it.
125 | ret = close(fd);
126 | printWithStatus("Closing file descriptor... ", (ret != 0));
127 |
128 | // Create new pointers from base pointer returned by mmap(). These will be used to read data from LabVIEW.
129 | // Note: The order the pointers are derived must match LabVIEW's order to prevent garbage data.
130 | void *pTemp = mmapPointer;
131 |
132 | uint8_t *lv_stop = (uint8_t*) pTemp;
133 | pTemp += sizeof(uint8_t);
134 |
135 | uint8_t *lv_bool = (uint8_t*) pTemp;
136 | pTemp += sizeof(uint8_t);
137 |
138 | double *lv_double = (double*) pTemp;
139 | pTemp += sizeof(double);
140 |
141 | int32_t *lv_int = (int32_t*) pTemp;
142 | pTemp += sizeof(int32_t);
143 |
144 | // Enter main while loop.
145 | printf("\nRunning main loop until LabVIEW asserts STOP... \n");
146 | clock_gettime(CLOCK_MONOTONIC, &now);
147 |
148 | do{
149 | // Get current time.
150 | prev = now;
151 | clock_gettime(CLOCK_MONOTONIC, &now);
152 |
153 | // Print loop period.
154 | printf("\rPeriod: %02.3f ms ", (timeDiff(&prev, &now) * 1000));
155 |
156 | // Read and print LabVIEW values. As simple as reading contents of pointers.
157 | printf("\nBoolean: %1d ", *lv_bool);
158 | printf("\nDouble: %+f ", *lv_double);
159 | printf("\nI32: %+d ", *lv_int);
160 |
161 | // Move cursor up 4 lines to overwrite previous values.
162 | printf("\n\033[4A");
163 |
164 | // Sleep for period.
165 | tp = now;
166 | addTimes(&tp, periodTp);
167 | do{
168 | ret = clock_nanosleep(CLOCK_MONOTONIC, TIMER_ABSTIME, &tp, NULL);
169 | } while(ret == EINTR && ret != 0);
170 | } while(!*lv_stop);
171 |
172 | printf("\n\n\n\nLabVIEW asserted STOP.\n");
173 | printf("Exiting.\n\n");
174 |
175 | return 0;
176 | }
177 |
--------------------------------------------------------------------------------
/Examples/Shared Memory/Simple Shared Memory/Instructions.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Examples/Shared Memory/Simple Shared Memory/Instructions.html
--------------------------------------------------------------------------------
/Examples/Shared Memory/Simple Shared Memory/Instructions_files/colorschememapping.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/Examples/Shared Memory/Simple Shared Memory/Instructions_files/filelist.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/Examples/Shared Memory/Simple Shared Memory/Instructions_files/image001.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Examples/Shared Memory/Simple Shared Memory/Instructions_files/image001.png
--------------------------------------------------------------------------------
/Examples/Shared Memory/Simple Shared Memory/Instructions_files/image002.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Examples/Shared Memory/Simple Shared Memory/Instructions_files/image002.png
--------------------------------------------------------------------------------
/Examples/Shared Memory/Simple Shared Memory/Instructions_files/image003.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Examples/Shared Memory/Simple Shared Memory/Instructions_files/image003.png
--------------------------------------------------------------------------------
/Examples/Shared Memory/Simple Shared Memory/Instructions_files/image005.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Examples/Shared Memory/Simple Shared Memory/Instructions_files/image005.png
--------------------------------------------------------------------------------
/Examples/Shared Memory/Simple Shared Memory/Instructions_files/image007.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Examples/Shared Memory/Simple Shared Memory/Instructions_files/image007.png
--------------------------------------------------------------------------------
/Examples/Shared Memory/Simple Shared Memory/Instructions_files/image008.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Examples/Shared Memory/Simple Shared Memory/Instructions_files/image008.png
--------------------------------------------------------------------------------
/Examples/Shared Memory/Simple Shared Memory/Instructions_files/image009.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Examples/Shared Memory/Simple Shared Memory/Instructions_files/image009.png
--------------------------------------------------------------------------------
/Examples/Shared Memory/Simple Shared Memory/Instructions_files/item0013.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Examples/Shared Memory/Simple Shared Memory/Instructions_files/props014.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/Examples/Shared Memory/Simple Shared Memory/Instructions_files/themedata.thmx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Examples/Shared Memory/Simple Shared Memory/Instructions_files/themedata.thmx
--------------------------------------------------------------------------------
/Examples/Shared Memory/Simple Shared Memory/Simple Shared Memory.lvproj:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 | true
5 | true
6 | false
7 | 0
8 | My Computer/VI Server
9 | My Computer/VI Server
10 | true
11 | true
12 | false
13 |
14 |
15 |
16 | -
17 | Linux RT CompactRIO
18 | 10.1.128.53
19 | TARGET_TYPE,RT;OS,Linux;CPU,ARM;DeviceCode,76D6;
20 | 76D6
21 | ARMLinux
22 | true
23 | 5000
24 | 1000
25 | 8
26 | 8
27 | false
28 | 300
29 | 80
30 | 60
31 |
32 | 100
33 | false
34 | 10000
35 | 0
36 | 0
37 | true
38 | true
39 | true
40 | 8001
41 | /c/ni-rt/startup/startup.rtexe
42 | true
43 | +*
44 | false
45 | /home/lvuser/natinst/bin
46 | true
47 | true
48 | +*
49 | false
50 | true
51 | 3363
52 | Main Application Instance/VI Server
53 | Main Application Instance/VI Server
54 | +*
55 | true
56 | true
57 | Listen 8000
58 |
59 | NI.ServerName default
60 | DocumentRoot "$LVSERVER_DOCROOT"
61 | TypesConfig "$LVSERVER_CONFIGROOT/mime.types"
62 | DirectoryIndex index.htm
63 | WorkerLimit 10
64 | InactivityTimeout 60
65 |
66 | LoadModulePath "$LVSERVER_MODULEPATHS"
67 | LoadModule LVAuth lvauthmodule
68 | LoadModule LVRFP lvrfpmodule
69 |
70 | #
71 | # Pipeline Definition
72 | #
73 |
74 | SetConnector netConnector
75 |
76 | AddHandler LVAuth
77 | AddHandler LVRFP
78 |
79 | AddHandler fileHandler ""
80 |
81 | AddOutputFilter chunkFilter
82 |
83 |
84 |
85 | false
86 | false
87 | /c/ni-rt/system/www/www.log
88 | 80
89 | /c/ni-rt/system/www
90 | c+*
91 | 60
92 | +*
93 | PqVr/ifkAQh+lVrdPIykXlFvg12GhhQFR8H9cUhphgg=:pTe9HRlQuMfJxAG6QCGq7UvoUpJzAzWGKy5SbZ+roSU=
94 | 15
95 |
-
96 |
97 |
98 |
99 | -
100 |
101 |
102 |
103 |
104 | -
105 |
-
106 |
107 |
108 |
109 |
110 |
111 |
112 |
113 |
114 |
115 |
116 |
117 |
118 |
119 |
120 |
121 |
122 |
123 |
124 |
125 |
126 |
127 |
128 |
129 |
130 |
131 |
132 |
133 |
134 |
135 |
136 |
137 |
138 |
139 |
140 |
141 |
142 |
143 |
144 |
145 |
--------------------------------------------------------------------------------
/Examples/Shared Memory/Simple Shared Memory/Simple Shared Memory.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Examples/Shared Memory/Simple Shared Memory/Simple Shared Memory.vi
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | Apache License
2 | Version 2.0, January 2004
3 | http://www.apache.org/licenses/
4 |
5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6 |
7 | 1. Definitions.
8 |
9 | "License" shall mean the terms and conditions for use, reproduction,
10 | and distribution as defined by Sections 1 through 9 of this document.
11 |
12 | "Licensor" shall mean the copyright owner or entity authorized by
13 | the copyright owner that is granting the License.
14 |
15 | "Legal Entity" shall mean the union of the acting entity and all
16 | other entities that control, are controlled by, or are under common
17 | control with that entity. For the purposes of this definition,
18 | "control" means (i) the power, direct or indirect, to cause the
19 | direction or management of such entity, whether by contract or
20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the
21 | outstanding shares, or (iii) beneficial ownership of such entity.
22 |
23 | "You" (or "Your") shall mean an individual or Legal Entity
24 | exercising permissions granted by this License.
25 |
26 | "Source" form shall mean the preferred form for making modifications,
27 | including but not limited to software source code, documentation
28 | source, and configuration files.
29 |
30 | "Object" form shall mean any form resulting from mechanical
31 | transformation or translation of a Source form, including but
32 | not limited to compiled object code, generated documentation,
33 | and conversions to other media types.
34 |
35 | "Work" shall mean the work of authorship, whether in Source or
36 | Object form, made available under the License, as indicated by a
37 | copyright notice that is included in or attached to the work
38 | (an example is provided in the Appendix below).
39 |
40 | "Derivative Works" shall mean any work, whether in Source or Object
41 | form, that is based on (or derived from) the Work and for which the
42 | editorial revisions, annotations, elaborations, or other modifications
43 | represent, as a whole, an original work of authorship. For the purposes
44 | of this License, Derivative Works shall not include works that remain
45 | separable from, or merely link (or bind by name) to the interfaces of,
46 | the Work and Derivative Works thereof.
47 |
48 | "Contribution" shall mean any work of authorship, including
49 | the original version of the Work and any modifications or additions
50 | to that Work or Derivative Works thereof, that is intentionally
51 | submitted to Licensor for inclusion in the Work by the copyright owner
52 | or by an individual or Legal Entity authorized to submit on behalf of
53 | the copyright owner. For the purposes of this definition, "submitted"
54 | means any form of electronic, verbal, or written communication sent
55 | to the Licensor or its representatives, including but not limited to
56 | communication on electronic mailing lists, source code control systems,
57 | and issue tracking systems that are managed by, or on behalf of, the
58 | Licensor for the purpose of discussing and improving the Work, but
59 | excluding communication that is conspicuously marked or otherwise
60 | designated in writing by the copyright owner as "Not a Contribution."
61 |
62 | "Contributor" shall mean Licensor and any individual or Legal Entity
63 | on behalf of whom a Contribution has been received by Licensor and
64 | subsequently incorporated within the Work.
65 |
66 | 2. Grant of Copyright License. Subject to the terms and conditions of
67 | this License, each Contributor hereby grants to You a perpetual,
68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69 | copyright license to reproduce, prepare Derivative Works of,
70 | publicly display, publicly perform, sublicense, and distribute the
71 | Work and such Derivative Works in Source or Object form.
72 |
73 | 3. Grant of Patent License. Subject to the terms and conditions of
74 | this License, each Contributor hereby grants to You a perpetual,
75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76 | (except as stated in this section) patent license to make, have made,
77 | use, offer to sell, sell, import, and otherwise transfer the Work,
78 | where such license applies only to those patent claims licensable
79 | by such Contributor that are necessarily infringed by their
80 | Contribution(s) alone or by combination of their Contribution(s)
81 | with the Work to which such Contribution(s) was submitted. If You
82 | institute patent litigation against any entity (including a
83 | cross-claim or counterclaim in a lawsuit) alleging that the Work
84 | or a Contribution incorporated within the Work constitutes direct
85 | or contributory patent infringement, then any patent licenses
86 | granted to You under this License for that Work shall terminate
87 | as of the date such litigation is filed.
88 |
89 | 4. Redistribution. You may reproduce and distribute copies of the
90 | Work or Derivative Works thereof in any medium, with or without
91 | modifications, and in Source or Object form, provided that You
92 | meet the following conditions:
93 |
94 | (a) You must give any other recipients of the Work or
95 | Derivative Works a copy of this License; and
96 |
97 | (b) You must cause any modified files to carry prominent notices
98 | stating that You changed the files; and
99 |
100 | (c) You must retain, in the Source form of any Derivative Works
101 | that You distribute, all copyright, patent, trademark, and
102 | attribution notices from the Source form of the Work,
103 | excluding those notices that do not pertain to any part of
104 | the Derivative Works; and
105 |
106 | (d) If the Work includes a "NOTICE" text file as part of its
107 | distribution, then any Derivative Works that You distribute must
108 | include a readable copy of the attribution notices contained
109 | within such NOTICE file, excluding those notices that do not
110 | pertain to any part of the Derivative Works, in at least one
111 | of the following places: within a NOTICE text file distributed
112 | as part of the Derivative Works; within the Source form or
113 | documentation, if provided along with the Derivative Works; or,
114 | within a display generated by the Derivative Works, if and
115 | wherever such third-party notices normally appear. The contents
116 | of the NOTICE file are for informational purposes only and
117 | do not modify the License. You may add Your own attribution
118 | notices within Derivative Works that You distribute, alongside
119 | or as an addendum to the NOTICE text from the Work, provided
120 | that such additional attribution notices cannot be construed
121 | as modifying the License.
122 |
123 | You may add Your own copyright statement to Your modifications and
124 | may provide additional or different license terms and conditions
125 | for use, reproduction, or distribution of Your modifications, or
126 | for any such Derivative Works as a whole, provided Your use,
127 | reproduction, and distribution of the Work otherwise complies with
128 | the conditions stated in this License.
129 |
130 | 5. Submission of Contributions. Unless You explicitly state otherwise,
131 | any Contribution intentionally submitted for inclusion in the Work
132 | by You to the Licensor shall be under the terms and conditions of
133 | this License, without any additional terms or conditions.
134 | Notwithstanding the above, nothing herein shall supersede or modify
135 | the terms of any separate license agreement you may have executed
136 | with Licensor regarding such Contributions.
137 |
138 | 6. Trademarks. This License does not grant permission to use the trade
139 | names, trademarks, service marks, or product names of the Licensor,
140 | except as required for reasonable and customary use in describing the
141 | origin of the Work and reproducing the content of the NOTICE file.
142 |
143 | 7. Disclaimer of Warranty. Unless required by applicable law or
144 | agreed to in writing, Licensor provides the Work (and each
145 | Contributor provides its Contributions) on an "AS IS" BASIS,
146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147 | implied, including, without limitation, any warranties or conditions
148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149 | PARTICULAR PURPOSE. You are solely responsible for determining the
150 | appropriateness of using or redistributing the Work and assume any
151 | risks associated with Your exercise of permissions under this License.
152 |
153 | 8. Limitation of Liability. In no event and under no legal theory,
154 | whether in tort (including negligence), contract, or otherwise,
155 | unless required by applicable law (such as deliberate and grossly
156 | negligent acts) or agreed to in writing, shall any Contributor be
157 | liable to You for damages, including any direct, indirect, special,
158 | incidental, or consequential damages of any character arising as a
159 | result of this License or out of the use or inability to use the
160 | Work (including but not limited to damages for loss of goodwill,
161 | work stoppage, computer failure or malfunction, or any and all
162 | other commercial damages or losses), even if such Contributor
163 | has been advised of the possibility of such damages.
164 |
165 | 9. Accepting Warranty or Additional Liability. While redistributing
166 | the Work or Derivative Works thereof, You may choose to offer,
167 | and charge a fee for, acceptance of support, warranty, indemnity,
168 | or other liability obligations and/or rights consistent with this
169 | License. However, in accepting such obligations, You may act only
170 | on Your own behalf and on Your sole responsibility, not on behalf
171 | of any other Contributor, and only if You agree to indemnify,
172 | defend, and hold each Contributor harmless for any liability
173 | incurred by, or claims asserted against, such Contributor by reason
174 | of your accepting any such warranty or additional liability.
175 |
176 | END OF TERMS AND CONDITIONS
177 |
178 | APPENDIX: How to apply the Apache License to your work.
179 |
180 | To apply the Apache License to your work, attach the following
181 | boilerplate notice, with the fields enclosed by brackets "{}"
182 | replaced with your own identifying information. (Don't include
183 | the brackets!) The text should be enclosed in the appropriate
184 | comment syntax for the file format. We also recommend that a
185 | file or class name and description of purpose be included on the
186 | same "printed page" as the copyright notice for easier
187 | identification within third-party archives.
188 |
189 | Copyright {yyyy} {name of copyright owner}
190 |
191 | Licensed under the Apache License, Version 2.0 (the "License");
192 | you may not use this file except in compliance with the License.
193 | You may obtain a copy of the License at
194 |
195 | http://www.apache.org/licenses/LICENSE-2.0
196 |
197 | Unless required by applicable law or agreed to in writing, software
198 | distributed under the License is distributed on an "AS IS" BASIS,
199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200 | See the License for the specific language governing permissions and
201 | limitations under the License.
202 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # LinuxRT-IPC
2 | This library provides LabVIEW with access to common inter-process communication (IPC) mechanisms available in Linux-based operating systems. These mechanisms can be used shared data, synchronize threads, etc. between a LabVIEW application and other parallel processes.
3 |
4 | # Source Code Version
5 | LabVIEW 2016
--------------------------------------------------------------------------------
/Source/C/C Functions/close.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/C/C Functions/close.vi
--------------------------------------------------------------------------------
/Source/C/C Functions/epoll_create.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/C/C Functions/epoll_create.vi
--------------------------------------------------------------------------------
/Source/C/C Functions/epoll_ctl.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/C/C Functions/epoll_ctl.vi
--------------------------------------------------------------------------------
/Source/C/C Functions/epoll_wait.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/C/C Functions/epoll_wait.vi
--------------------------------------------------------------------------------
/Source/C/C Functions/fstat.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/C/C Functions/fstat.vi
--------------------------------------------------------------------------------
/Source/C/C Functions/ftruncate.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/C/C Functions/ftruncate.vi
--------------------------------------------------------------------------------
/Source/C/C Functions/getpagesize.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/C/C Functions/getpagesize.vi
--------------------------------------------------------------------------------
/Source/C/C Functions/mkfifo.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/C/C Functions/mkfifo.vi
--------------------------------------------------------------------------------
/Source/C/C Functions/mmap.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/C/C Functions/mmap.vi
--------------------------------------------------------------------------------
/Source/C/C Functions/munmap.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/C/C Functions/munmap.vi
--------------------------------------------------------------------------------
/Source/C/C Functions/open.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/C/C Functions/open.vi
--------------------------------------------------------------------------------
/Source/C/C Functions/read (in place).vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/C/C Functions/read (in place).vi
--------------------------------------------------------------------------------
/Source/C/C Functions/read.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/C/C Functions/read.vi
--------------------------------------------------------------------------------
/Source/C/C Functions/shm_open.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/C/C Functions/shm_open.vi
--------------------------------------------------------------------------------
/Source/C/C Functions/shm_unlink.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/C/C Functions/shm_unlink.vi
--------------------------------------------------------------------------------
/Source/C/C Functions/timerfd_create.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/C/C Functions/timerfd_create.vi
--------------------------------------------------------------------------------
/Source/C/C Functions/timerfd_gettime.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/C/C Functions/timerfd_gettime.vi
--------------------------------------------------------------------------------
/Source/C/C Functions/timerfd_settime.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/C/C Functions/timerfd_settime.vi
--------------------------------------------------------------------------------
/Source/C/C Functions/unlink.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/C/C Functions/unlink.vi
--------------------------------------------------------------------------------
/Source/C/C Functions/write.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/C/C Functions/write.vi
--------------------------------------------------------------------------------
/Source/C/Controls/C Types/blkcnt_t_32.ctl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/C/Controls/C Types/blkcnt_t_32.ctl
--------------------------------------------------------------------------------
/Source/C/Controls/C Types/blkcnt_t_64.ctl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/C/Controls/C Types/blkcnt_t_64.ctl
--------------------------------------------------------------------------------
/Source/C/Controls/C Types/blksize_t_32.ctl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/C/Controls/C Types/blksize_t_32.ctl
--------------------------------------------------------------------------------
/Source/C/Controls/C Types/blksize_t_64.ctl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/C/Controls/C Types/blksize_t_64.ctl
--------------------------------------------------------------------------------
/Source/C/Controls/C Types/dev_t.ctl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/C/Controls/C Types/dev_t.ctl
--------------------------------------------------------------------------------
/Source/C/Controls/C Types/gid_t.ctl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/C/Controls/C Types/gid_t.ctl
--------------------------------------------------------------------------------
/Source/C/Controls/C Types/ino_t_32.ctl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/C/Controls/C Types/ino_t_32.ctl
--------------------------------------------------------------------------------
/Source/C/Controls/C Types/ino_t_64.ctl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/C/Controls/C Types/ino_t_64.ctl
--------------------------------------------------------------------------------
/Source/C/Controls/C Types/mode_t.ctl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/C/Controls/C Types/mode_t.ctl
--------------------------------------------------------------------------------
/Source/C/Controls/C Types/nlink_t_32.ctl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/C/Controls/C Types/nlink_t_32.ctl
--------------------------------------------------------------------------------
/Source/C/Controls/C Types/nlink_t_64.ctl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/C/Controls/C Types/nlink_t_64.ctl
--------------------------------------------------------------------------------
/Source/C/Controls/C Types/off_t_32.ctl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/C/Controls/C Types/off_t_32.ctl
--------------------------------------------------------------------------------
/Source/C/Controls/C Types/off_t_64.ctl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/C/Controls/C Types/off_t_64.ctl
--------------------------------------------------------------------------------
/Source/C/Controls/C Types/stat_32.ctl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/C/Controls/C Types/stat_32.ctl
--------------------------------------------------------------------------------
/Source/C/Controls/C Types/stat_64.ctl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/C/Controls/C Types/stat_64.ctl
--------------------------------------------------------------------------------
/Source/C/Controls/C Types/time_t_32.ctl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/C/Controls/C Types/time_t_32.ctl
--------------------------------------------------------------------------------
/Source/C/Controls/C Types/time_t_64.ctl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/C/Controls/C Types/time_t_64.ctl
--------------------------------------------------------------------------------
/Source/C/Controls/C Types/uid_t.ctl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/C/Controls/C Types/uid_t.ctl
--------------------------------------------------------------------------------
/Source/C/Controls/epoll event struct.ctl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/C/Controls/epoll event struct.ctl
--------------------------------------------------------------------------------
/Source/C/Controls/epoll events.ctl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/C/Controls/epoll events.ctl
--------------------------------------------------------------------------------
/Source/C/Controls/epoll operations.ctl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/C/Controls/epoll operations.ctl
--------------------------------------------------------------------------------
/Source/C/Controls/file creation flags.ctl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/C/Controls/file creation flags.ctl
--------------------------------------------------------------------------------
/Source/C/Controls/file status flags.ctl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/C/Controls/file status flags.ctl
--------------------------------------------------------------------------------
/Source/C/Controls/functions.ctl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/C/Controls/functions.ctl
--------------------------------------------------------------------------------
/Source/C/Controls/mman sharing.ctl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/C/Controls/mman sharing.ctl
--------------------------------------------------------------------------------
/Source/C/Controls/permissions group.ctl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/C/Controls/permissions group.ctl
--------------------------------------------------------------------------------
/Source/C/Controls/permissions.ctl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/C/Controls/permissions.ctl
--------------------------------------------------------------------------------
/Source/C/Linux RT IPC.C.lvlib:
--------------------------------------------------------------------------------
1 |
2 |
3 | 8e61e1fc-0ef7-4f93-ba04-5f47bea4bc62
4 | &A#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!)7!!!*Q(C=\>8"41-R%)8B"_,!.2WAN0!;Y*!<Z\1Q,?4+-3V-#WEB,5Q,;3%NB.^GB$AA6AAC=9A>*\P0;`NDVVKE72[F"VW7SMOXZ;@^#_?8_@GW`V@D&]]8ZP_C@[(I6G\F@Z@8R5V]^@V]J`%CIB5N;5'TRH+8)C`S)C`S)C`S*%`S*%`S*%`S)!`S)!`S)!^SEZP=Z#9XO=FH*2?ZS%5/K6C]7+C9N*CAO"C+CK`#5XA+4_(B6)7H]"3?QF.YO%3&J`!5HM*4?"CGQF.Y#E`B+4R-.35V+TG?QM0U3DS**`%EHM4$EEI]#3":,*EYG13'EM\E)0%EHM4$I2*0YEE]C3@RU+X%EXA34_**0!S:>S7H:F2S0%SDQ".Y!E`A#4R-L=!4?!*0Y!E],+@!%XA#2,"A-$E%"9/##Y+4Q".Y_&(A#4S"*`!%(LLG%YJZ:Y:G6()]RG-]RG-]RM-5-B\D-2\D-2[GF@%9D`%9D`'QF)T(?)T(1-SC,#]TG2FI,D+"]@#:O]8T+?75?&;J.[^[5[IXGXI4K4?(_K'L([<[);FPPPKGKG_7_C;I`TAV7IV2,[)?0#\5G?]4\5A\U0;U(7V,W^$7N.59_M=8HM^HH5YH(9^((1Y(\@>\\89\<<><<49<L>>LL6;LD^@!%`8DB@$_8HLF?,:2\Z^J?P]>N@OO_(`W(\Q<>;`0=X/0XA$56X+8!!!!!!
5 | 369131520
6 | 1.0.0.0
7 | false
8 | 49 51 48 49 56 48 49 55 13 0 0 0 0 1 23 21 76 111 97 100 32 38 32 85 110 108 111 97 100 46 108 118 99 108 97 115 115 0 0 1 0 0 0 0 0 9 0 0 13 44 1 100 1 100 80 84 72 48 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 15 13 76 97 121 101 114 46 108 118 99 108 97 115 115 0 0 1 0 0 0 0 0 7 0 0 12 191 0 0 0 0 0 0 0 0 0 0 12 158 0 40 0 0 12 152 0 0 12 0 0 0 0 0 0 32 0 32 0 24 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 0 0 0 0 0 0 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 0 0 0 0 0 0 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 0 0 0 0 0 0 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 0 0 0 0 0 0 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 0 0 0 0 0 0 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 0 0 0 0 0 0 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 0 0 0 0 0 0 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 0 0 0 0 0 0 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 153 255 102 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13 77 101 114 103 101 100 32 76 97 121 101 114 115 100 1 0 0 0 0 0 1 67 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11 83 109 97 108 108 32 70 111 110 116 115 0 1 9 1 1
9 |
10 |
11 | -
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 | -
21 | 1
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 | -
44 |
-
45 | 1
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 | -
66 | 2
67 |
68 |
69 | -
70 | 1
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 | -
82 |
-
83 | 2
84 |
85 |
86 | -
87 | 1
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
--------------------------------------------------------------------------------
/Source/C/SubVIs/OR flags U32.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/C/SubVIs/OR flags U32.vi
--------------------------------------------------------------------------------
/Source/C/SubVIs/check for try again.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/C/SubVIs/check for try again.vi
--------------------------------------------------------------------------------
/Source/C/SubVIs/error handler.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/C/SubVIs/error handler.vi
--------------------------------------------------------------------------------
/Source/C/SubVIs/path globals.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/C/SubVIs/path globals.vi
--------------------------------------------------------------------------------
/Source/C/SubVIs/permission group to mode_t.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/C/SubVIs/permission group to mode_t.vi
--------------------------------------------------------------------------------
/Source/C/SubVIs/stat 32 to stat 64.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/C/SubVIs/stat 32 to stat 64.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Barrier Attr/Controls/reference.ctl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Barrier Attr/Controls/reference.ctl
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Barrier Attr/Public VIs/Barrier Attr Create Object.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Barrier Attr/Public VIs/Barrier Attr Create Object.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Barrier Attr/Public VIs/Barrier Attr Delete Object.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Barrier Attr/Public VIs/Barrier Attr Delete Object.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Barrier Attr/Public VIs/Barrier Attr Destroy.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Barrier Attr/Public VIs/Barrier Attr Destroy.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Barrier Attr/Public VIs/Barrier Attr Get Process.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Barrier Attr/Public VIs/Barrier Attr Get Process.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Barrier Attr/Public VIs/Barrier Attr Init.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Barrier Attr/Public VIs/Barrier Attr Init.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Barrier Attr/Public VIs/Barrier Attr Set Process.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Barrier Attr/Public VIs/Barrier Attr Set Process.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Barrier Attr/Public VIs/Barrier Attr Size.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Barrier Attr/Public VIs/Barrier Attr Size.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Barrier/Controls/reference.ctl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Barrier/Controls/reference.ctl
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Barrier/Public VIs/Barrier Create Object.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Barrier/Public VIs/Barrier Create Object.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Barrier/Public VIs/Barrier Delete Object.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Barrier/Public VIs/Barrier Delete Object.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Barrier/Public VIs/Barrier Destroy.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Barrier/Public VIs/Barrier Destroy.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Barrier/Public VIs/Barrier Init.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Barrier/Public VIs/Barrier Init.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Barrier/Public VIs/Barrier Size.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Barrier/Public VIs/Barrier Size.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Barrier/Public VIs/Barrier Wait.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Barrier/Public VIs/Barrier Wait.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Cond Attr/Controls/reference.ctl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Cond Attr/Controls/reference.ctl
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Cond Attr/Public VIs/Cond Attr Create Object.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Cond Attr/Public VIs/Cond Attr Create Object.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Cond Attr/Public VIs/Cond Attr Delete Object.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Cond Attr/Public VIs/Cond Attr Delete Object.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Cond Attr/Public VIs/Cond Attr Destroy.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Cond Attr/Public VIs/Cond Attr Destroy.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Cond Attr/Public VIs/Cond Attr Get Clock.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Cond Attr/Public VIs/Cond Attr Get Clock.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Cond Attr/Public VIs/Cond Attr Get Process.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Cond Attr/Public VIs/Cond Attr Get Process.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Cond Attr/Public VIs/Cond Attr Init.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Cond Attr/Public VIs/Cond Attr Init.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Cond Attr/Public VIs/Cond Attr Set Clock.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Cond Attr/Public VIs/Cond Attr Set Clock.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Cond Attr/Public VIs/Cond Attr Set Process.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Cond Attr/Public VIs/Cond Attr Set Process.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Cond Attr/Public VIs/Cond Attr Size.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Cond Attr/Public VIs/Cond Attr Size.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Cond Attr/Templates/cond attr.vit:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Cond Attr/Templates/cond attr.vit
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Cond/Accessors/Read clock id.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Cond/Accessors/Read clock id.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Cond/Accessors/Write clock id.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Cond/Accessors/Write clock id.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Cond/Controls/reference.ctl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Cond/Controls/reference.ctl
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Cond/Public VIs/Cond Broadcast.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Cond/Public VIs/Cond Broadcast.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Cond/Public VIs/Cond Create Object.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Cond/Public VIs/Cond Create Object.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Cond/Public VIs/Cond Delete Object.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Cond/Public VIs/Cond Delete Object.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Cond/Public VIs/Cond Destroy.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Cond/Public VIs/Cond Destroy.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Cond/Public VIs/Cond Init.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Cond/Public VIs/Cond Init.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Cond/Public VIs/Cond Signal.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Cond/Public VIs/Cond Signal.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Cond/Public VIs/Cond Size.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Cond/Public VIs/Cond Size.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Cond/Public VIs/Cond Timed Wait (absolute nanoseconds).vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Cond/Public VIs/Cond Timed Wait (absolute nanoseconds).vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Cond/Public VIs/Cond Timed Wait (absolute seconds).vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Cond/Public VIs/Cond Timed Wait (absolute seconds).vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Cond/Public VIs/Cond Timed Wait (absolute timespec).vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Cond/Public VIs/Cond Timed Wait (absolute timespec).vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Cond/Public VIs/Cond Timed Wait (relative nanoseconds).vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Cond/Public VIs/Cond Timed Wait (relative nanoseconds).vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Cond/Public VIs/Cond Timed Wait (relative seconds).vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Cond/Public VIs/Cond Timed Wait (relative seconds).vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Cond/Public VIs/Cond Timed Wait.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Cond/Public VIs/Cond Timed Wait.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Cond/Public VIs/Cond Wait.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Cond/Public VIs/Cond Wait.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Cond/Templates/cond with attr.vit:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Cond/Templates/cond with attr.vit
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Cond/Templates/cond with mutex.vit:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Cond/Templates/cond with mutex.vit
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Cond/Templates/cond.vit:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Cond/Templates/cond.vit
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Mutex Attr/Controls/reference.ctl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Mutex Attr/Controls/reference.ctl
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Mutex Attr/Public VIs/Mutex Attr Create Object.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Mutex Attr/Public VIs/Mutex Attr Create Object.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Mutex Attr/Public VIs/Mutex Attr Delete Object.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Mutex Attr/Public VIs/Mutex Attr Delete Object.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Mutex Attr/Public VIs/Mutex Attr Destroy.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Mutex Attr/Public VIs/Mutex Attr Destroy.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Mutex Attr/Public VIs/Mutex Attr Get Mutex Type.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Mutex Attr/Public VIs/Mutex Attr Get Mutex Type.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Mutex Attr/Public VIs/Mutex Attr Get Priority Ceiling.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Mutex Attr/Public VIs/Mutex Attr Get Priority Ceiling.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Mutex Attr/Public VIs/Mutex Attr Get Process.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Mutex Attr/Public VIs/Mutex Attr Get Process.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Mutex Attr/Public VIs/Mutex Attr Get Protocol.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Mutex Attr/Public VIs/Mutex Attr Get Protocol.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Mutex Attr/Public VIs/Mutex Attr Init.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Mutex Attr/Public VIs/Mutex Attr Init.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Mutex Attr/Public VIs/Mutex Attr Set Mutex Type.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Mutex Attr/Public VIs/Mutex Attr Set Mutex Type.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Mutex Attr/Public VIs/Mutex Attr Set Priority Ceiling.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Mutex Attr/Public VIs/Mutex Attr Set Priority Ceiling.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Mutex Attr/Public VIs/Mutex Attr Set Process.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Mutex Attr/Public VIs/Mutex Attr Set Process.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Mutex Attr/Public VIs/Mutex Attr Set Protocol.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Mutex Attr/Public VIs/Mutex Attr Set Protocol.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Mutex Attr/Public VIs/Mutex Attr Size.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Mutex Attr/Public VIs/Mutex Attr Size.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Mutex Attr/Templates/mutex attr.vit:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Mutex Attr/Templates/mutex attr.vit
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Mutex/Controls/reference.ctl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Mutex/Controls/reference.ctl
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Mutex/Public VIs/Mutex Create Object.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Mutex/Public VIs/Mutex Create Object.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Mutex/Public VIs/Mutex Delete Object.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Mutex/Public VIs/Mutex Delete Object.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Mutex/Public VIs/Mutex Destroy.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Mutex/Public VIs/Mutex Destroy.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Mutex/Public VIs/Mutex Get Priority Ceiling.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Mutex/Public VIs/Mutex Get Priority Ceiling.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Mutex/Public VIs/Mutex Init.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Mutex/Public VIs/Mutex Init.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Mutex/Public VIs/Mutex Lock.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Mutex/Public VIs/Mutex Lock.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Mutex/Public VIs/Mutex Set Priority Ceiling.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Mutex/Public VIs/Mutex Set Priority Ceiling.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Mutex/Public VIs/Mutex Size.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Mutex/Public VIs/Mutex Size.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Mutex/Public VIs/Mutex Timed Lock (absolute nanoseconds).vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Mutex/Public VIs/Mutex Timed Lock (absolute nanoseconds).vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Mutex/Public VIs/Mutex Timed Lock (absolute seconds).vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Mutex/Public VIs/Mutex Timed Lock (absolute seconds).vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Mutex/Public VIs/Mutex Timed Lock (absolute timespec).vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Mutex/Public VIs/Mutex Timed Lock (absolute timespec).vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Mutex/Public VIs/Mutex Timed Lock (relative nanoseconds).vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Mutex/Public VIs/Mutex Timed Lock (relative nanoseconds).vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Mutex/Public VIs/Mutex Timed Lock (relative seconds).vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Mutex/Public VIs/Mutex Timed Lock (relative seconds).vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Mutex/Public VIs/Mutex Timed Lock.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Mutex/Public VIs/Mutex Timed Lock.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Mutex/Public VIs/Mutex Try Lock.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Mutex/Public VIs/Mutex Try Lock.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Mutex/Public VIs/Mutex Unlock.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Mutex/Public VIs/Mutex Unlock.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Mutex/Templates/mutex with attr.vit:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Mutex/Templates/mutex with attr.vit
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Mutex/Templates/mutex.vit:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Mutex/Templates/mutex.vit
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/POSIX Thread Object/Accessors/Read pointer.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/POSIX Thread Object/Accessors/Read pointer.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/POSIX Thread Object/Accessors/Write pointer.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/POSIX Thread Object/Accessors/Write pointer.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_barrier_destroy.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_barrier_destroy.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_barrier_init.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_barrier_init.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_barrier_wait.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_barrier_wait.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_barrierattr_destroy.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_barrierattr_destroy.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_barrierattr_getpshared.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_barrierattr_getpshared.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_barrierattr_init.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_barrierattr_init.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_barrierattr_setpshared.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_barrierattr_setpshared.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_cond_broadcast.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_cond_broadcast.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_cond_destroy.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_cond_destroy.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_cond_init.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_cond_init.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_cond_signal.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_cond_signal.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_cond_timedwait.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_cond_timedwait.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_cond_wait.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_cond_wait.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_condattr_destroy.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_condattr_destroy.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_condattr_getclock.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_condattr_getclock.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_condattr_getpshared.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_condattr_getpshared.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_condattr_init.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_condattr_init.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_condattr_setclock.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_condattr_setclock.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_condattr_setpshared.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_condattr_setpshared.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_mutex_destroy.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_mutex_destroy.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_mutex_getprioceiling.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_mutex_getprioceiling.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_mutex_init.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_mutex_init.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_mutex_lock.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_mutex_lock.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_mutex_setprioceiling.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_mutex_setprioceiling.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_mutex_timedlock.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_mutex_timedlock.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_mutex_trylock.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_mutex_trylock.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_mutex_unlock.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_mutex_unlock.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_mutexattr_destroy.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_mutexattr_destroy.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_mutexattr_getprioceiling.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_mutexattr_getprioceiling.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_mutexattr_getprotocol.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_mutexattr_getprotocol.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_mutexattr_getpshared.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_mutexattr_getpshared.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_mutexattr_gettype.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_mutexattr_gettype.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_mutexattr_init.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_mutexattr_init.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_mutexattr_setprioceiling.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_mutexattr_setprioceiling.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_mutexattr_setprotocol.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_mutexattr_setprotocol.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_mutexattr_setpshared.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_mutexattr_setpshared.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_mutexattr_settype.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/pthread_mutexattr_settype.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/sem_destroy.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/sem_destroy.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/sem_getvalue.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/sem_getvalue.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/sem_init.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/sem_init.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/sem_open.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/sem_open.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/sem_post.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/sem_post.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/sem_timedwait.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/sem_timedwait.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/sem_trywait.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/sem_trywait.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/sem_wait.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/POSIX Thread Object/C Functions/sem_wait.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/POSIX Thread Object/Controls/pthread functions.ctl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/POSIX Thread Object/Controls/pthread functions.ctl
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/POSIX Thread Object/Controls/reference.ctl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/POSIX Thread Object/Controls/reference.ctl
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/POSIX Thread Object/Private VIs/get pthread error.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/POSIX Thread Object/Private VIs/get pthread error.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/POSIX Thread Object/Private VIs/libpthread path.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/POSIX Thread Object/Private VIs/libpthread path.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Semaphore/Controls/reference.ctl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Semaphore/Controls/reference.ctl
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Semaphore/Public VIs/Semaphore Create Object.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Semaphore/Public VIs/Semaphore Create Object.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Semaphore/Public VIs/Semaphore Delete Object.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Semaphore/Public VIs/Semaphore Delete Object.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Semaphore/Public VIs/Semaphore Destroy.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Semaphore/Public VIs/Semaphore Destroy.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Semaphore/Public VIs/Semaphore Get Value.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Semaphore/Public VIs/Semaphore Get Value.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Semaphore/Public VIs/Semaphore Init.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Semaphore/Public VIs/Semaphore Init.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Semaphore/Public VIs/Semaphore Open.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Semaphore/Public VIs/Semaphore Open.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Semaphore/Public VIs/Semaphore Post.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Semaphore/Public VIs/Semaphore Post.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Semaphore/Public VIs/Semaphore Size.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Semaphore/Public VIs/Semaphore Size.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Semaphore/Public VIs/Semaphore Timed Wait (absolute seconds).vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Semaphore/Public VIs/Semaphore Timed Wait (absolute seconds).vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Semaphore/Public VIs/Semaphore Timed Wait (absolute timespec).vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Semaphore/Public VIs/Semaphore Timed Wait (absolute timespec).vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Semaphore/Public VIs/Semaphore Timed Wait (relative nanoseconds).vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Semaphore/Public VIs/Semaphore Timed Wait (relative nanoseconds).vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Semaphore/Public VIs/Semaphore Timed Wait (relative seconds).vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Semaphore/Public VIs/Semaphore Timed Wait (relative seconds).vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Semaphore/Public VIs/Semaphore Timed Wait.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Semaphore/Public VIs/Semaphore Timed Wait.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Semaphore/Public VIs/Semaphore Try Wait.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Semaphore/Public VIs/Semaphore Try Wait.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Semaphore/Public VIs/Semaphore Wait.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Semaphore/Public VIs/Semaphore Wait.vi
--------------------------------------------------------------------------------
/Source/POSIX Threads/Classes/Semaphore/Public VIs/sem.vit:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Classes/Semaphore/Public VIs/sem.vit
--------------------------------------------------------------------------------
/Source/POSIX Threads/Controls/Public/C Enums/pthread_mutex_type.ctl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Controls/Public/C Enums/pthread_mutex_type.ctl
--------------------------------------------------------------------------------
/Source/POSIX Threads/Controls/Public/C Enums/pthread_priority_protocol.ctl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Controls/Public/C Enums/pthread_priority_protocol.ctl
--------------------------------------------------------------------------------
/Source/POSIX Threads/Controls/Public/C Enums/pthread_process_shared.ctl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/POSIX Threads/Controls/Public/C Enums/pthread_process_shared.ctl
--------------------------------------------------------------------------------
/Source/POSIX Threads/Linux RT IPC.POSIX Threads.lvlib:
--------------------------------------------------------------------------------
1 |
2 |
3 | &A#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!)\!!!*Q(C=\>8"D2."%)8B"_,!XH!'S%>OK&*Q#C;%3M(80@JIE$A];20!+4C&3I#$5X!+ZJ^W?=1+S<Y!1GB\X0<Y48@VNT0D77GUN^)<H?_V4T@<>0Q[[*?BZTY_P=YXDF`??P]S<N[`TOMC]]@VSVTX7@2M`GX`H;;8^N,_\`:Y^U@QRX](LT1^C/B&.TXJI7H:=Z%8?:%8?:%8O=F.<H+4G^TE3:\E3:\E3:\E12\E12\E12\E9S-8O=B&$KF9P&CI+&I5+!:$5@&7?!J0Y3E]@&8B+4S&J`!5(I;I]"3?QF.Y#A`46(A+4_%J0)7(5E.39S0(5XAI,_-R(O-R(O.B32G0!:D&4'&4")<-1<.D0-:D0/T+?)T(?)T(?$AMYT%?YT%?YW(+/#M?GGEDRU-:*:\%EXA34_+BN"*0YEE]C3@RM*Q34_**%-G#38%)3C9F!Z)PC3@R]+(%EXA34_**0"Q;6SD(G:EUUU;/*`!%HM!4?!)0*22Y!E`A#4S"B\)+0)%H]!3?Q-.3#DS"*`!%E'"2FF>1,*A9$!K#Q-.LX#URLJ+(*-9G^=WLPCH6.ZP[*F,@(/K,LL[9[IOE0PHKE[I_7?K4I0\DV'AV2LW)?P)U5#@?D`1$@5`@UD@U.8V&8^)8U^4@00"U/OFY0/JQ/'C`XWO\X7KTW7C^8GOV7GGZ8'KR7-S0A@>M]Q0B]FR[:0`JH2[_\04Q^0WT>V]`@.ON0XL+`],`ZX`AW;D8_HE.TN%05(NR0A!!!!!
4 | 369131520
5 | 1.0.0.0
6 | false
7 | 49 51 48 49 56 48 51 50 13 0 0 0 0 1 23 21 76 111 97 100 32 38 32 85 110 108 111 97 100 46 108 118 99 108 97 115 115 0 0 1 0 0 0 0 0 9 0 0 4 50 1 100 1 100 80 84 72 48 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 15 13 76 97 121 101 114 46 108 118 99 108 97 115 115 0 0 1 0 0 0 0 0 7 0 0 3 191 0 0 0 0 0 0 0 0 0 0 3 162 0 40 0 0 3 156 0 0 3 96 0 0 0 0 0 9 0 32 0 24 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 0 0 0 0 0 0 150 150 150 150 150 150 0 0 0 0 0 0 0 0 0 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 0 0 0 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 0 0 0 150 150 150 150 150 150 0 0 0 0 0 0 150 150 150 150 150 150 0 0 0 150 150 150 150 150 150 0 0 0 150 150 150 0 0 0 150 150 150 150 150 150 0 0 0 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 0 0 0 150 150 150 150 150 150 0 0 0 0 0 0 150 150 150 150 150 150 0 0 0 0 0 0 0 0 0 150 150 150 150 150 150 0 0 0 0 0 0 150 150 150 0 0 0 0 0 0 150 150 150 150 150 150 0 0 0 0 0 0 150 150 150 150 150 150 0 0 0 150 150 150 150 150 150 150 150 150 0 0 0 0 0 0 150 150 150 150 150 150 0 0 0 0 0 0 150 150 150 150 150 150 0 0 0 0 0 0 150 150 150 150 150 150 0 0 0 150 150 150 150 150 150 150 150 150 150 150 150 0 0 0 150 150 150 150 150 150 0 0 0 150 150 150 0 0 0 150 150 150 0 0 0 150 150 150 150 150 150 0 0 0 150 150 150 0 0 0 150 150 150 0 0 0 150 150 150 0 0 0 150 150 150 0 0 0 150 150 150 0 0 0 150 150 150 150 150 150 0 0 0 0 0 0 150 150 150 150 150 150 0 0 0 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 0 0 0 150 150 150 0 0 0 150 150 150 0 0 0 150 150 150 0 0 0 150 150 150 150 150 150 0 0 0 0 0 0 150 150 150 150 150 150 150 150 150 0 0 0 0 0 0 150 150 150 150 150 150 0 0 0 0 0 0 150 150 150 150 150 150 0 0 0 0 0 0 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 150 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 9 67 108 105 112 98 111 97 114 100 100 1 0 0 0 0 0 7 80 84 104 114 101 97 100 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11 83 109 97 108 108 32 70 111 110 116 115 0 1 9 1 0
8 |
9 |
10 | -
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 | -
21 |
-
22 | 1
23 |
-
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
--------------------------------------------------------------------------------
/Source/Pipes/Classes/Unix Pipe Reader/Accessors/Read epoll fd.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Pipes/Classes/Unix Pipe Reader/Accessors/Read epoll fd.vi
--------------------------------------------------------------------------------
/Source/Pipes/Classes/Unix Pipe Reader/Accessors/Read timer fd.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Pipes/Classes/Unix Pipe Reader/Accessors/Read timer fd.vi
--------------------------------------------------------------------------------
/Source/Pipes/Classes/Unix Pipe Reader/Accessors/Write epoll fd.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Pipes/Classes/Unix Pipe Reader/Accessors/Write epoll fd.vi
--------------------------------------------------------------------------------
/Source/Pipes/Classes/Unix Pipe Reader/Accessors/Write timer fd.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Pipes/Classes/Unix Pipe Reader/Accessors/Write timer fd.vi
--------------------------------------------------------------------------------
/Source/Pipes/Classes/Unix Pipe Reader/Close Pipe (reader).vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Pipes/Classes/Unix Pipe Reader/Close Pipe (reader).vi
--------------------------------------------------------------------------------
/Source/Pipes/Classes/Unix Pipe Reader/Open Pipe (reader).vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Pipes/Classes/Unix Pipe Reader/Open Pipe (reader).vi
--------------------------------------------------------------------------------
/Source/Pipes/Classes/Unix Pipe Reader/Read (In Place).vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Pipes/Classes/Unix Pipe Reader/Read (In Place).vi
--------------------------------------------------------------------------------
/Source/Pipes/Classes/Unix Pipe Reader/Read.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Pipes/Classes/Unix Pipe Reader/Read.vi
--------------------------------------------------------------------------------
/Source/Pipes/Classes/Unix Pipe Writer/Close Pipe (writer).vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Pipes/Classes/Unix Pipe Writer/Close Pipe (writer).vi
--------------------------------------------------------------------------------
/Source/Pipes/Classes/Unix Pipe Writer/Open Pipe (writer).vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Pipes/Classes/Unix Pipe Writer/Open Pipe (writer).vi
--------------------------------------------------------------------------------
/Source/Pipes/Classes/Unix Pipe Writer/Write.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Pipes/Classes/Unix Pipe Writer/Write.vi
--------------------------------------------------------------------------------
/Source/Pipes/Classes/Unix Pipe/Accessors/Read file descriptor.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Pipes/Classes/Unix Pipe/Accessors/Read file descriptor.vi
--------------------------------------------------------------------------------
/Source/Pipes/Classes/Unix Pipe/Accessors/Read pathname.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Pipes/Classes/Unix Pipe/Accessors/Read pathname.vi
--------------------------------------------------------------------------------
/Source/Pipes/Classes/Unix Pipe/Accessors/Write file descriptor.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Pipes/Classes/Unix Pipe/Accessors/Write file descriptor.vi
--------------------------------------------------------------------------------
/Source/Pipes/Classes/Unix Pipe/Accessors/Write pathname.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Pipes/Classes/Unix Pipe/Accessors/Write pathname.vi
--------------------------------------------------------------------------------
/Source/Pipes/VIs/Close Pipe.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Pipes/VIs/Close Pipe.vi
--------------------------------------------------------------------------------
/Source/Pipes/VIs/Create Pipe.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Pipes/VIs/Create Pipe.vi
--------------------------------------------------------------------------------
/Source/Pipes/VIs/Open Pipe.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Pipes/VIs/Open Pipe.vi
--------------------------------------------------------------------------------
/Source/Pipes/VIs/Remove Pipe.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Pipes/VIs/Remove Pipe.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Classes/Shared Memory/Accessors/Read access mode.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Classes/Shared Memory/Accessors/Read access mode.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Classes/Shared Memory/Accessors/Read currently mapped.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Classes/Shared Memory/Accessors/Read currently mapped.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Classes/Shared Memory/Accessors/Read file descriptor open.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Classes/Shared Memory/Accessors/Read file descriptor open.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Classes/Shared Memory/Accessors/Read file descriptor.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Classes/Shared Memory/Accessors/Read file descriptor.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Classes/Shared Memory/Accessors/Read permissions.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Classes/Shared Memory/Accessors/Read permissions.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Classes/Shared Memory/Accessors/Read pointer.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Classes/Shared Memory/Accessors/Read pointer.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Classes/Shared Memory/Accessors/Read shm filename.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Classes/Shared Memory/Accessors/Read shm filename.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Classes/Shared Memory/Accessors/Read size.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Classes/Shared Memory/Accessors/Read size.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Classes/Shared Memory/Accessors/Write access mode.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Classes/Shared Memory/Accessors/Write access mode.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Classes/Shared Memory/Accessors/Write currently mapped.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Classes/Shared Memory/Accessors/Write currently mapped.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Classes/Shared Memory/Accessors/Write file descriptor open.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Classes/Shared Memory/Accessors/Write file descriptor open.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Classes/Shared Memory/Accessors/Write file descriptor.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Classes/Shared Memory/Accessors/Write file descriptor.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Classes/Shared Memory/Accessors/Write permissions.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Classes/Shared Memory/Accessors/Write permissions.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Classes/Shared Memory/Accessors/Write pointer.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Classes/Shared Memory/Accessors/Write pointer.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Classes/Shared Memory/Accessors/Write shm filename.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Classes/Shared Memory/Accessors/Write shm filename.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Classes/Shared Memory/Accessors/Write size.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Classes/Shared Memory/Accessors/Write size.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Classes/Shared Memory/VIs/Check Name.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Classes/Shared Memory/VIs/Check Name.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Classes/Shared Memory/VIs/Close File Descriptor.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Classes/Shared Memory/VIs/Close File Descriptor.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Classes/Shared Memory/VIs/Close Shared Memory File.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Classes/Shared Memory/VIs/Close Shared Memory File.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Classes/Shared Memory/VIs/Get Shared Memory Size.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Classes/Shared Memory/VIs/Get Shared Memory Size.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Classes/Shared Memory/VIs/Get System Page Size.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Classes/Shared Memory/VIs/Get System Page Size.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Classes/Shared Memory/VIs/Map Memory.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Classes/Shared Memory/VIs/Map Memory.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Classes/Shared Memory/VIs/Map Shared Memory.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Classes/Shared Memory/VIs/Map Shared Memory.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Classes/Shared Memory/VIs/Open File.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Classes/Shared Memory/VIs/Open File.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Classes/Shared Memory/VIs/Open Shared Memory File.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Classes/Shared Memory/VIs/Open Shared Memory File.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Classes/Shared Memory/VIs/Remove Shared Memory File.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Classes/Shared Memory/VIs/Remove Shared Memory File.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Classes/Shared Memory/VIs/Set Shared Memory Size.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Classes/Shared Memory/VIs/Set Shared Memory Size.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Classes/Shared Memory/VIs/Unmap Memory.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Classes/Shared Memory/VIs/Unmap Memory.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Classes/Shared Memory/VIs/Unmap Shared Memory.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Classes/Shared Memory/VIs/Unmap Shared Memory.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Controls/file mode.ctl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Controls/file mode.ctl
--------------------------------------------------------------------------------
/Source/Shared Memory/Controls/reference.ctl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Controls/reference.ctl
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/In Place Read 1D Array Boolean.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/In Place Read 1D Array Boolean.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/In Place Read 1D Array DBL.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/In Place Read 1D Array DBL.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/In Place Read 1D Array I16.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/In Place Read 1D Array I16.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/In Place Read 1D Array I32.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/In Place Read 1D Array I32.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/In Place Read 1D Array I64.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/In Place Read 1D Array I64.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/In Place Read 1D Array I8.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/In Place Read 1D Array I8.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/In Place Read 1D Array SGL.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/In Place Read 1D Array SGL.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/In Place Read 1D Array U16.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/In Place Read 1D Array U16.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/In Place Read 1D Array U32.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/In Place Read 1D Array U32.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/In Place Read 1D Array U64.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/In Place Read 1D Array U64.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/In Place Read 1D Array U8.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/In Place Read 1D Array U8.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/In Place Read Pointer.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/In Place Read Pointer.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/In Place Read Scalar Boolean.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/In Place Read Scalar Boolean.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/In Place Read Scalar DBL.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/In Place Read Scalar DBL.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/In Place Read Scalar I16.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/In Place Read Scalar I16.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/In Place Read Scalar I32.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/In Place Read Scalar I32.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/In Place Read Scalar I64.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/In Place Read Scalar I64.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/In Place Read Scalar I8.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/In Place Read Scalar I8.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/In Place Read Scalar SGL.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/In Place Read Scalar SGL.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/In Place Read Scalar U16.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/In Place Read Scalar U16.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/In Place Read Scalar U32.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/In Place Read Scalar U32.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/In Place Read Scalar U64.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/In Place Read Scalar U64.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/In Place Read Scalar U8.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/In Place Read Scalar U8.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/In Place Read String.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/In Place Read String.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/In Place Write 1D Array Boolean.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/In Place Write 1D Array Boolean.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/In Place Write 1D Array DBL.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/In Place Write 1D Array DBL.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/In Place Write 1D Array I16.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/In Place Write 1D Array I16.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/In Place Write 1D Array I32.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/In Place Write 1D Array I32.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/In Place Write 1D Array I64.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/In Place Write 1D Array I64.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/In Place Write 1D Array I8.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/In Place Write 1D Array I8.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/In Place Write 1D Array SGL.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/In Place Write 1D Array SGL.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/In Place Write 1D Array U16.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/In Place Write 1D Array U16.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/In Place Write 1D Array U32.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/In Place Write 1D Array U32.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/In Place Write 1D Array U64.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/In Place Write 1D Array U64.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/In Place Write 1D Array U8.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/In Place Write 1D Array U8.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/In Place Write Pointer.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/In Place Write Pointer.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/In Place Write String.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/In Place Write String.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/Read 1D Array Boolean.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/Read 1D Array Boolean.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/Read 1D Array DBL.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/Read 1D Array DBL.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/Read 1D Array I16.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/Read 1D Array I16.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/Read 1D Array I32.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/Read 1D Array I32.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/Read 1D Array I64.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/Read 1D Array I64.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/Read 1D Array I8.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/Read 1D Array I8.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/Read 1D Array SGL.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/Read 1D Array SGL.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/Read 1D Array U16.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/Read 1D Array U16.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/Read 1D Array U32.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/Read 1D Array U32.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/Read 1D Array U64.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/Read 1D Array U64.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/Read 1D Array U8.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/Read 1D Array U8.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/Read Pointer.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/Read Pointer.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/Read Scalar Boolean.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/Read Scalar Boolean.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/Read Scalar DBL.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/Read Scalar DBL.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/Read Scalar I16.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/Read Scalar I16.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/Read Scalar I32.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/Read Scalar I32.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/Read Scalar I64.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/Read Scalar I64.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/Read Scalar I8.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/Read Scalar I8.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/Read Scalar SGL.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/Read Scalar SGL.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/Read Scalar U16.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/Read Scalar U16.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/Read Scalar U32.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/Read Scalar U32.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/Read Scalar U64.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/Read Scalar U64.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/Read Scalar U8.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/Read Scalar U8.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/Read String.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/Read String.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/Write 1D Array Boolean.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/Write 1D Array Boolean.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/Write 1D Array DBL.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/Write 1D Array DBL.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/Write 1D Array I16.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/Write 1D Array I16.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/Write 1D Array I32.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/Write 1D Array I32.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/Write 1D Array I64.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/Write 1D Array I64.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/Write 1D Array I8.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/Write 1D Array I8.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/Write 1D Array SGL.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/Write 1D Array SGL.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/Write 1D Array U16.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/Write 1D Array U16.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/Write 1D Array U32.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/Write 1D Array U32.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/Write 1D Array U64.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/Write 1D Array U64.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/Write 1D Array U8.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/Write 1D Array U8.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/Write Pointer.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/Write Pointer.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/Write Scalar Boolean.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/Write Scalar Boolean.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/Write Scalar DBL.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/Write Scalar DBL.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/Write Scalar I16.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/Write Scalar I16.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/Write Scalar I32.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/Write Scalar I32.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/Write Scalar I64.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/Write Scalar I64.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/Write Scalar I8.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/Write Scalar I8.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/Write Scalar SGL.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/Write Scalar SGL.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/Write Scalar U16.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/Write Scalar U16.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/Write Scalar U32.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/Write Scalar U32.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/Write Scalar U64.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/Write Scalar U64.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/Write Scalar U8.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/Write Scalar U8.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Pointer Operations/Write String.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Pointer Operations/Write String.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Templates/Basic Scalar Write-Read.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Templates/Basic Scalar Write-Read.vi
--------------------------------------------------------------------------------
/Source/Shared Memory/Templates/Initialize Shared Memory.vi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NISystemsEngineering/LinuxRT-IPC/156280fc6ce2ef92cd0f9b3b430ff8f55ff5ec08/Source/Shared Memory/Templates/Initialize Shared Memory.vi
--------------------------------------------------------------------------------