простых шагов:
- запустить процесс и разветвить дочерний процесс, распечатать журнал каждые 1 мс на дочернем процессе
- отправить сигнал (SIGSTOP, SIGCONT) надочерний процесс на родительском процессе, приостановленный на 100 мс между SIGSTOP и SIGCONT
- наблюдает задержку дочернего процесса.
код:
#include <stdio.h>
#include <signal.h>
#include <sys/time.h>
#include <sys/wait.h>
#include <unistd.h>
#define MS 1000 // 1ms
long get_curr_time()
{
struct timeval tv;
gettimeofday(&tv, NULL);
return tv.tv_sec * 1000000L + tv.tv_usec;
}
void do_child()
{
int i = 0;
long start, end, cost;
for(i = 0; i < 3; i++) {
start = get_curr_time();
usleep(MS);
end = get_curr_time();
cost = end - start;
if (cost > 2 * MS)
printf("%d. cost time: %ld us, Delayed by SIGSTOP.\n", i, cost);
else
printf("%d. cost time: %ld us\n", i, cost);
}
}
int main()
{
int pid;
pid = fork();
if (pid == 0) {
do_child();
} else {
usleep(2 * MS);
kill(pid, SIGSTOP); // pause 100ms
usleep(100 * MS);
kill(pid, SIGCONT);
waitpid(pid, NULL, 0);
}
return 0;
}
результат:
0. cost time: 1066 us
1. cost time: 100886 us, Delayed by SIGSTOP.
2. cost time: 1057 us