Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sleeping00.c « static « zdtm « test - github.com/checkpoint-restore/criu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fb45ebc463c186ad055580c75618952fe93b93af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <unistd.h>

#include "zdtmtst.h"

const char *test_doc = "Suspend while migrating";
const char *test_author = "Roman Kagan <rkagan@parallels.com>";

int main(int argc, char **argv)
{
	test_init(argc, argv);

	test_daemon();
	test_waitsig();

	pass();

	return 0;
}