-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
+ update copyright. Signed-off-by: Petr Vorel <[email protected]>
- Loading branch information
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
// SPDX-License-Identifier: GPL-2.0-or-later | ||
/* | ||
* Copyright (c) 2019 FUJITSU LIMITED. All rights reserved. | ||
* Copyright (c) Linux Test Project, 2019-2025 | ||
* Author: Xiao Yang <[email protected]> | ||
*/ | ||
|
||
/* | ||
* Description: | ||
/*\ | ||
* Set CPU time limit for a process and check its behavior | ||
* after reaching CPU time limit. | ||
* | ||
* 1) Process got SIGXCPU after reaching soft limit of CPU time. | ||
* 2) Process got SIGKILL after reaching hard limit of CPU time. | ||
* | ||
* Note: | ||
* This is also a regression test for the following kernel bug: | ||
* 'c3bca5d450b62 ("posix-cpu-timers: Ensure set_process_cpu_timer is always evaluated")' | ||
* Test is also a regression test for kernel bug: | ||
* c3bca5d450b62 ("posix-cpu-timers: Ensure set_process_cpu_timer is always evaluated") | ||
*/ | ||
|
||
#define _GNU_SOURCE | ||
|