summaryrefslogtreecommitdiffstats
path: root/src/userprog/syscall.c
blob: 1287d98e58bb74c8ed0a33308ed8fabf8a4babf1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#include "userprog/syscall.h"
#include <stdio.h>
#include <syscall-nr.h>
#include "threads/init.h"
#include "threads/interrupt.h"
#include "threads/thread.h"

static void syscall_handler (struct intr_frame *);

void
syscall_init (void) 
{
  intr_register_int (0x30, 3, INTR_ON, syscall_handler, "syscall");
}

// cast to TYPE and deref argument N from f->esp
#define INTR_ESP(N, TYPE) *(TYPE *)(f->esp+(4*(N)))

static void
syscall_handler (struct intr_frame *f UNUSED) 
{
  int syscall_number = INTR_ESP(0, int);
  switch (syscall_number) {
    case 0:
      // halt
      power_off ();
      break;
    case 9:
      // printf
      printf ("printf: %s", INTR_ESP(2, char *));
      break;
    default:
      printf ("kernel: unknown syscall '%d'\n", syscall_number);
      break;
  }
  thread_exit ();
}