From: kkonaka@mac.com
To: linux-c-programming@vger.kernel.org
Subject: makecontext(3)
Date: Mon, 28 Jul 2003 15:06:30 -0400 [thread overview]
Message-ID: <la1xwao4i1.wl@mac.com> (raw)
on the surface(?) calls to makecontext() appear to have to be
preceded by getcontext() to completely initialize its arg: ucontext_t
struct (that is, if I comment out getcontext() calls from a
program like the below, it causes SEGV). why is it the case?
kenji
---
#include <ucontext.h>
#include <unistd.h>
#include <err.h>
static ucontext_t u0;
static ucontext_t u1;
static ucontext_t u2;
#define STACK_SIZE (1024 * 8)
#define NLOOP 7
static int i;
static int j;
static void f()
{
for (i = 0; i < NLOOP; i++) {
printf("f(): i = %d\n", i);
if (swapcontext(&u1, &u2) < 0)
err(1, NULL);
}
}
static void g()
{
for (j = 0; j < NLOOP; j++) {
printf("g(): j = %d\n", j);
if (swapcontext(&u2, &u0) < 0)
err(1, NULL);
}
}
main()
{
static unsigned char _u1_stack[STACK_SIZE];
static unsigned char _u2_stack[STACK_SIZE];
getcontext(&u1);
u1.uc_stack.ss_sp = _u1_stack;
u1.uc_stack.ss_size = sizeof _u1_stack;
u1.uc_stack.ss_flags = 0;
u1.uc_link = NULL;
makecontext(&u1, f, 0);
getcontext(&u2);
u2.uc_stack.ss_sp = _u2_stack;
u2.uc_stack.ss_size = sizeof _u2_stack;
u2.uc_stack.ss_flags = 0;
u2.uc_link = NULL;
makecontext(&u2, g, 0);
while (1) {
if (swapcontext(&u0, &u1) < 0)
err(1, NULL);
printf("main: %d %d\n", i, j);
if (i == NLOOP && j == NLOOP)
exit(0);
}
}
--
next reply other threads:[~2003-07-28 19:06 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-07-28 19:06 kkonaka [this message]
2003-07-29 11:39 ` makecontext(3) Luciano Miguel Ferreira Rocha
2003-07-30 13:49 ` makecontext(3) kkonaka
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=la1xwao4i1.wl@mac.com \
--to=kkonaka@mac.com \
--cc=linux-c-programming@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).