/* * Copyright (c) 2002-3, Intel Corporation. All rights reserved. * Created by: salwan.searty REMOVE-THIS AT intel DOT com * This file is licensed under the GPL license. For the full content * of this license, see the COPYING file at the top level of this * source tree. * Test that the killpg() function shall return 0 upon success. */ #define _XOPEN_SOURCE 600 #include #include #include #include #include "posixtest.h" int main() { int pgrp; if ((pgrp = getpgrp()) == -1) { printf("Could not get process group number\n"); return PTS_UNRESOLVED; } if (killpg(pgrp, 0) != 0) { printf("killpg did not return success.\n"); return PTS_UNRESOLVED; } printf("Test PASSED\n"); return PTS_PASS; }