aboutsummaryrefslogtreecommitdiff
path: root/src/libthread/arm-ucontext.c
blob: 512ca973d4a491e20365d0e2cbede5a350c881ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include "threadimpl.h"

void
makecontext(ucontext_t *uc, void (*fn)(void), int argc, ...)
{
	int i, *sp;
	va_list arg;

	sp = USPALIGN(uc, 4);
	va_start(arg, argc);
	for(i=0; i<4 && i<argc; i++)
		(&uc->uc_mcontext.arm_r0)[i] = va_arg(arg, uint);
	va_end(arg);
	uc->uc_mcontext.arm_sp = (uint)sp;
	uc->uc_mcontext.arm_lr = (uint)fn;
}

int
swapcontext(ucontext_t *oucp, const ucontext_t *ucp)
{
	if(getcontext(oucp) == 0)
		setcontext(ucp);
	return 0;
}