thesis/paper/artifacts/generic/msg_cleanup.c
2025-02-19 17:58:57 +01:00

8 lines
No EOL
142 B
C

#include "msg_msg.h"
int main(void)
{
printf("[*] cleanup\n");
for (size_t i = 0; i < (1<<24); ++i)
msgctl(i, IPC_RMID, 0);
}