Implement sysarch().
This commit is contained in:
parent
c92d1bd289
commit
15b39a57a5
@ -40,6 +40,13 @@ struct sysarch_args {
|
||||
int
|
||||
sysarch(struct thread *td, struct sysarch_args *uap)
|
||||
{
|
||||
TODO;
|
||||
return (0);
|
||||
int error;
|
||||
|
||||
error = 0;
|
||||
switch (uap->op) {
|
||||
default:
|
||||
error = EINVAL;
|
||||
break;
|
||||
}
|
||||
return (error);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user