• Home
Name Date Size #Lines LOC

..--

.gitignoreD03-May-2024479 2726

MakefileD03-May-20241.1 KiB336

Makefile.linuxD03-May-2024104 74

READMED03-May-2024457 1811

cleanupD03-May-2024418 2318

message_queue_test_01.cD03-May-20249.4 KiB249101

message_queue_test_02_ctl.cD03-May-20249.5 KiB244106

message_queue_test_02_get.cD03-May-20248.3 KiB20674

message_queue_test_02_rcv.cD03-May-20248.3 KiB20776

message_queue_test_02_snd.cD03-May-20249.3 KiB24097

message_queue_test_04.cD03-May-202410.5 KiB296131

message_queue_test_05.cD03-May-202410 KiB261106

pipe_test_01.cD03-May-20249.7 KiB23681

pipe_test_02.cD03-May-202424.2 KiB683324

run_semaphore_test_01.shD03-May-20244.3 KiB12653

semaphore_test_01.cD03-May-20248.4 KiB19363

semaphore_test_02.cD03-May-202416.6 KiB483228

semaphore_test_03.cD03-May-202436.9 KiB1,039587

shmem_test_01.cD03-May-20249 KiB22073

shmem_test_02.cD03-May-202415.5 KiB429215

shmem_test_03.cD03-May-202422.4 KiB580249

shmem_test_04.cD03-May-202418.7 KiB704393

shmem_test_05.cD03-May-202411.7 KiB331130

shmem_test_06.cD03-May-202411.4 KiB302106

shmem_test_07.cD03-May-202426.9 KiB689288

signal_test_01.cD03-May-202415.9 KiB426196

signal_test_02.cD03-May-202415.4 KiB386152

signal_test_03.cD03-May-202410.7 KiB270104

signal_test_04.cD03-May-202414.8 KiB385168

signal_test_05.cD03-May-202412.5 KiB316123

signal_test_06.cD03-May-202410.7 KiB25798

signal_test_07.cD03-May-20249.6 KiB23392

signals.hD03-May-20242.9 KiB6134

testallD03-May-20242.1 KiB5852

README

1Manoj Iyer, IBM Austin TX, manjo@austin.ibm.com.
2~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3
4To run these tests run ./testall
5On completion you will see a lot of sem and shm id's created (ipcs), run the
6script ./cleanup to remove them from your system.
7
8You can manually remove the ids by doing the following
9
10IDS=`ipcs | cut -f 2 -d " "`
11
12ipcrm sem $IDS
13ipcrm shm $IDS
14ipcrm msg $IDS
15
16The signal tests are not garunteed to work on 64 bit machines.
17
18