umount, NOT unmount!
This commit is contained in:
parent
2cc1d41f57
commit
8d209d8e01
|
@ -118,7 +118,7 @@
|
|||
#define SYS_getdirentries 156
|
||||
#define SYS_statfs 157
|
||||
#define SYS_fstatfs 158
|
||||
#define SYS_unmount 159
|
||||
#define SYS_umount 159
|
||||
#define SYS_async_daemon 160
|
||||
#define SYS_getfh 161
|
||||
#define SYS_getdomainname 162
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#include "syscall.h"
|
||||
.sect .text; .sect .rom; .sect .data; .sect .bss; .sect .text
|
||||
.define _unmount
|
||||
_unmount: SYSTEM(SYS_unmount)
|
||||
.define _umount
|
||||
_umount: SYSTEM(SYS_unmount)
|
||||
|
|
|
@ -118,7 +118,7 @@
|
|||
#define SYS_getdirentries 156
|
||||
#define SYS_statfs 157
|
||||
#define SYS_fstatfs 158
|
||||
#define SYS_unmount 159
|
||||
#define SYS_umount 159
|
||||
#define SYS_async_daemon 160
|
||||
#define SYS_getfh 161
|
||||
#define SYS_getdomainname 162
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#include "syscall.h"
|
||||
.sect .text; .sect .rom; .sect .data; .sect .bss; .sect .text
|
||||
.define _unmount
|
||||
_unmount: SYSTEM(SYS_unmount)
|
||||
.define _umount
|
||||
_umount: SYSTEM(SYS_umount)
|
||||
|
|
Loading…
Reference in a new issue