activated wfileops.c instead of wfilestubs.c, commented out mmap stuff (as in fileops.c)
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@29153 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
2558db1023
commit
e06359547c
@ -88,7 +88,7 @@ MergeObject posix_gnu_libio.o :
|
||||
vasprintf.c
|
||||
vscanf.c
|
||||
vsnprintf.c
|
||||
wfile_stubs.c
|
||||
# wfile_stubs.c
|
||||
|
||||
# wide character
|
||||
|
||||
@ -115,8 +115,8 @@ MergeObject posix_gnu_libio.o :
|
||||
vswprintf.c
|
||||
vwprintf.c
|
||||
# vwscanf.c
|
||||
# wfiledoalloc.c
|
||||
# wfileops.c
|
||||
wfiledoalloc.c
|
||||
wfileops.c
|
||||
wgenops.c
|
||||
wprintf.c
|
||||
# wscanf.c
|
||||
|
@ -292,6 +292,7 @@ _IO_wfile_underflow (fp)
|
||||
INTDEF(_IO_wfile_underflow)
|
||||
|
||||
|
||||
#ifdef HAVE_MMAP
|
||||
static wint_t
|
||||
_IO_wfile_underflow_mmap (_IO_FILE *fp)
|
||||
{
|
||||
@ -365,6 +366,7 @@ _IO_wfile_underflow_maybe_mmap (_IO_FILE *fp)
|
||||
|
||||
return _IO_WUNDERFLOW (fp);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
wint_t
|
||||
@ -882,6 +884,7 @@ struct _IO_jump_t _IO_wfile_jumps =
|
||||
INTVARDEF(_IO_wfile_jumps)
|
||||
|
||||
|
||||
#ifdef HAVE_MMAP
|
||||
struct _IO_jump_t _IO_wfile_jumps_mmap =
|
||||
{
|
||||
JUMP_INIT_DUMMY,
|
||||
@ -929,3 +932,4 @@ struct _IO_jump_t _IO_wfile_jumps_maybe_mmap =
|
||||
JUMP_INIT(showmanyc, _IO_default_showmanyc),
|
||||
JUMP_INIT(imbue, _IO_default_imbue)
|
||||
};
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user