• Home
  • History
  • Annotate
  • only in /external/ltp/testcases/kernel/ipc/ipc_stress/
NameDateSize

..29-Aug-20174 KiB

.gitignore29-Aug-2017479

cleanup29-Aug-2017418

Makefile29-Aug-20171.1 KiB

Makefile.linux29-Aug-2017104

message_queue_test_01.c29-Aug-20179.4 KiB

message_queue_test_02_ctl.c29-Aug-20179.5 KiB

message_queue_test_02_get.c29-Aug-20178.3 KiB

message_queue_test_02_rcv.c29-Aug-20178.3 KiB

message_queue_test_02_snd.c29-Aug-20179.3 KiB

message_queue_test_04.c29-Aug-201710.5 KiB

message_queue_test_05.c29-Aug-201710 KiB

pipe_test_01.c29-Aug-20179.7 KiB

pipe_test_02.c29-Aug-201724.2 KiB

README29-Aug-2017457

run_semaphore_test_01.sh29-Aug-20174.3 KiB

semaphore_test_01.c29-Aug-20178.4 KiB

semaphore_test_02.c29-Aug-201716.6 KiB

semaphore_test_03.c29-Aug-201736.9 KiB

shmem_test_01.c29-Aug-20179 KiB

shmem_test_02.c29-Aug-201715.5 KiB

shmem_test_03.c29-Aug-201722.4 KiB

shmem_test_04.c29-Aug-201718.7 KiB

shmem_test_05.c29-Aug-201711.7 KiB

shmem_test_06.c29-Aug-201711.4 KiB

shmem_test_07.c29-Aug-201726.9 KiB

signal_test_01.c29-Aug-201715.9 KiB

signal_test_02.c29-Aug-201715.4 KiB

signal_test_03.c29-Aug-201710.7 KiB

signal_test_04.c29-Aug-201714.8 KiB

signal_test_05.c29-Aug-201712.5 KiB

signal_test_06.c29-Aug-201710.7 KiB

signal_test_07.c29-Aug-20179.6 KiB

signals.h29-Aug-20172.9 KiB

testall29-Aug-20172.1 KiB

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