Files
seta75D 7c4988eac0 Init
2021-10-11 19:38:01 -03:00

19 lines
314 B
C
Executable File

/*
* Copyright (c) Sun Microsystems Inc. 1991
*/
#ident "@(#)p_online.c 1.1 92/07/05 SMI"
#include "synonyms.h"
#include <sys/types.h>
#include <sys/procset.h>
#include <sys/processor.h>
#include <sys/syscall.h>
int
p_online(processorid_t cpu, int flag)
{
return (syscall(SYS_p_online, (int) cpu, flag));
}