| Server IP : 3.147.158.171 / Your IP : 216.73.216.229 Web Server : Apache/2.4.67 (Amazon Linux) OpenSSL/3.5.5 System : Linux ip-172-31-2-178.us-east-2.compute.internal 6.1.172-216.329.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC Wed May 20 06:31:34 UTC 2026 x86_64 User : ec2-user ( 1000) PHP Version : 8.4.21 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /usr/share/systemtap/tapset/ |
Upload File : |
// File switching tapset
// Copyright (C) 2015 Red Hat Inc.
//
// This file is part of systemtap, and is free software. You can
// redistribute it and/or modify it under the terms of the GNU General
// Public License (GPL); either version 2, or (at your option) any
// later version.
/**
* sfunction switch_file - switch to the next output file
*
* Description: This function sends a signal to the stapio process,
* commanding it to rotate to the next output file when output is
* sent to file(s).
*
* The mechanism of switching files was changed by upstream commit
* 5b39471380a238469c8fc18136f12600e5e9aec7 . With this commit, the
* rotation only works if there is some actual systemtap output.
*/
function switch_file() {
if (stp_pid() != 0) {
system(sprintf("kill -USR2 %d", stp_pid()))
}
}