Subversion Repositories HelenOS-historic

Rev

Rev 1777 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1777 Rev 1780
Line 61... Line 61...
61
{
61
{
62
    (void) ofw_call("exit", 0, 0);
62
    (void) ofw_call("exit", 0, 0);
63
    cpu_halt();
63
    cpu_halt();
64
}
64
}
65
 
65
 
66
__native ofw_call(const char *service, const int nargs, const int nret, ...)
66
unative_t ofw_call(const char *service, const int nargs, const int nret, ...)
67
{
67
{
68
    va_list list;
68
    va_list list;
69
    ofw_args_t args;
69
    ofw_args_t args;
70
    int i;
70
    int i;
71
   
71