- TODO: Regression tests for this sort of stuff
events
);
}
+int acess__SysMkDir(const char *pathname)
+{
+ DEBUG("TODO: _SysMkDir");
+ return 0;
+}
int acess__SysUnlink(const char *pathname)
{
// TODO:
+ DEBUG("TODO: _Unlink");
return 0;
}
DEFSYM(_SysGetACL),
DEFSYM(_SysMount),
DEFSYM(_SysSelect),
+ DEFSYM(_SysMkDir),
+ DEFSYM(_SysUnlink),
DEFSYM(_SysClone),
DEFSYM(_SysExecVE),
include ../Makefile.tpl
# create libld-acess.so
+ifneq ($(ARCH),native)
$(_XBIN): $(_OBJPREFIX)_stublib.o
@echo [LD] -o -shared libld-acess.so
$(LD) -shared -o $@ $< $(LDFLAGS)
# @$(LD) $(LDFLAGS) -o $@ $(OBJ)
+endif
# Override .ao to look in the object prefix for the source
#define _SysIOCtl acess__SysIOCtl
#define _SysMount acess__SysMount
#define _SysSelect acess__SysSelect
+#define _SysMkDir acess__SysMkDir
#define _SysUnlink acess__SysUnlink
#define _errno acess__errno