[Krafton Jungle] PintOS 2.0.0
크래프톤 정글 PintOS
 
Loading...
Searching...
No Matches
syscall.h
Go to the documentation of this file.
1#ifndef USERPROG_SYSCALL_H
2#define USERPROG_SYSCALL_H
3
4#include "threads/synch.h"
5
6void syscall_init (void);
7
8void close (int fd);
9
10struct lock filesys_lock; // 파일 점유시 필요한 락
11
12#endif /* userprog/syscall.h */
void close(int fd)
열린 파일을 닫는 시스템 콜
Definition: syscall.c:392
Definition: synch.h:20
void syscall_init(void)
Definition: syscall.c:74
struct lock filesys_lock
Definition: syscall.h:10