From: Gerd Knorr <kraxel@suse.de>
To: Linux Kernel Mailing List <linux-kernel@vger.kernel.org>
Subject: 2.6.12: itimer_real timers don't survive execve() any more
Date: Thu, 4 Aug 2005 18:45:32 +0200 [thread overview]
Message-ID: <20050804164532.GB31853@bytesex> (raw)
Hi,
Somewhere between 2.6.11 and 2.6.12 the regression in $subject
was added to the linux kernel. Testcase below.
Ideas on that anyone?
Gerd
==============================[ test_exec_alarm.c ]==============================
#include <sys/time.h>
#include <unistd.h>
#include <string.h>
int main(int argc, char ** argv)
{
struct itimerval value;
int retval;
static char hosted_executable[256];
char * hosted_executable_args[2];
/* Set the alarm timer. */
value.it_interval.tv_sec = 0;
value.it_interval.tv_usec = 0;
value.it_value.tv_sec = 200;
value.it_value.tv_usec = 0;
retval = setitimer(ITIMER_REAL, &value, NULL);
if (retval != 0) {
perror("setitimer()");
return 1;
}
/* Prepare the file name of the hosted executable. */
strcpy(hosted_executable, "./test_getitimer");
/* Prepare the command line arguments. */
hosted_executable_args[0] = hosted_executable;
hosted_executable_args[1] = NULL;
/* Execute the hosted executable which should inherit the timer. */
retval = execvp(hosted_executable, hosted_executable_args);
/* If we get here, the execvp() call failed. */
perror("execvp()");
return 1;
}
==============================[ test_getitimer.c ]==============================
#include <sys/time.h>
#include <stdio.h>
int main(int argc, char ** argv)
{
struct itimerval value;
int retval;
retval = getitimer(ITIMER_REAL, &value);
if (retval != 0) {
perror("getitimer()");
return 1;
}
printf("alarm timer value: %u sec, %u msec\n", value.it_value.tv_sec, value.it_value.tv_usec);
return 0;
}
next reply other threads:[~2005-08-04 16:54 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-08-04 16:45 Gerd Knorr [this message]
2005-08-04 21:22 ` [PATCH] Re: 2.6.12: itimer_real timers don't survive execve() any more George Anzinger
2005-08-04 21:34 ` Roland McGrath
2005-08-04 22:02 ` Andrew Morton
2005-08-04 22:10 ` George Anzinger
2005-08-05 8:44 ` Gerd Knorr
2005-08-05 15:33 ` George Anzinger
2005-08-05 22:10 ` Roland McGrath
2005-08-06 0:50 ` George Anzinger
2005-08-04 21:37 ` Andrew Morton
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20050804164532.GB31853@bytesex \
--to=kraxel@suse.de \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.