mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 04:26:32 +00:00
[CRT] Correctly share get_ioinfo()/release_ioinfo() functions between code units
This fixes the following compiler errors: ../sdk/lib/crt/stdio/stat64.c:7:13: error: inline function 'release_ioinfo' declared but never defined [-Werror] inline void release_ioinfo(ioinfo *info); ^~~~~~~~~~~~~~ ../sdk/lib/crt/stdio/stat64.c:6:16: error: inline function 'get_ioinfo' declared but never defined [-Werror] inline ioinfo* get_ioinfo(int fd); ^~~~~~~~~~ ../sdk/lib/crt/stdio/file.c:186:5: error: 'init_ioinfo_cs' is static but used in inline function 'get_ioinfo' which is not static [-Werror] init_ioinfo_cs(ret); ^~~~~~~~~~~~~~ ../sdk/lib/crt/stdio/file.c:183:19: error: 'get_ioinfo_nolock' is static but used in inline function 'get_ioinfo' which is not static [-Werror] ioinfo *ret = get_ioinfo_nolock(fd);
This commit is contained in:
parent
c3e2a54789
commit
c8719ee865
3 changed files with 6 additions and 6 deletions
|
@ -178,7 +178,7 @@ static inline void init_ioinfo_cs(ioinfo *info)
|
|||
}
|
||||
}
|
||||
|
||||
/*static*/ inline ioinfo* get_ioinfo(int fd)
|
||||
ioinfo* get_ioinfo(int fd)
|
||||
{
|
||||
ioinfo *ret = get_ioinfo_nolock(fd);
|
||||
if(ret == &__badioinfo)
|
||||
|
@ -260,7 +260,7 @@ static inline ioinfo* get_ioinfo_alloc(int *fd)
|
|||
return &__badioinfo;
|
||||
}
|
||||
|
||||
/*static*/ inline void release_ioinfo(ioinfo *info)
|
||||
void release_ioinfo(ioinfo *info)
|
||||
{
|
||||
if(info!=&__badioinfo && info->exflag & EF_CRIT_INIT)
|
||||
LeaveCriticalSection(&info->crit);
|
||||
|
|
|
@ -3,8 +3,8 @@
|
|||
#include <direct.h>
|
||||
#include <internal/wine/msvcrt.h>
|
||||
|
||||
inline ioinfo* get_ioinfo(int fd);
|
||||
inline void release_ioinfo(ioinfo *info);
|
||||
ioinfo* get_ioinfo(int fd);
|
||||
void release_ioinfo(ioinfo *info);
|
||||
|
||||
#define ALL_S_IREAD (_S_IREAD | (_S_IREAD >> 3) | (_S_IREAD >> 6))
|
||||
#define ALL_S_IWRITE (_S_IWRITE | (_S_IWRITE >> 3) | (_S_IWRITE >> 6))
|
||||
|
|
|
@ -41,8 +41,8 @@
|
|||
#include "bitsfixup.h"
|
||||
#include <internal/wine/msvcrt.h>
|
||||
|
||||
inline ioinfo* get_ioinfo(int fd);
|
||||
inline void release_ioinfo(ioinfo *info);
|
||||
ioinfo* get_ioinfo(int fd);
|
||||
void release_ioinfo(ioinfo *info);
|
||||
|
||||
/******************************************************************************
|
||||
* \name _futime
|
||||
|
|
Loading…
Reference in a new issue