Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
ac3ec2d9
Commit
ac3ec2d9
authored
May 26, 2021
by
Zebediah Figura
Committed by
Alexandre Julliard
May 27, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: No longer export __wine_locked_recvmsg().
Signed-off-by:
Zebediah Figura
<
z.figura12@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
6682aa47
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
8 deletions
+6
-8
ntdll.spec
dlls/ntdll/ntdll.spec
+0
-3
socket.c
dlls/ntdll/unix/socket.c
+1
-3
unix_private.h
dlls/ntdll/unix/unix_private.h
+3
-0
virtual.c
dlls/ntdll/unix/virtual.c
+2
-2
No files found.
dlls/ntdll/ntdll.spec
View file @
ac3ec2d9
...
...
@@ -1623,9 +1623,6 @@
@ cdecl -norelay __wine_dbg_output(str)
@ cdecl -norelay __wine_dbg_strdup(str)
# Virtual memory
@ cdecl -syscall __wine_locked_recvmsg(long ptr long)
# Version
@ cdecl wine_get_version()
@ cdecl wine_get_build_id()
...
...
dlls/ntdll/unix/socket.c
View file @
ac3ec2d9
...
...
@@ -147,8 +147,6 @@ static NTSTATUS sock_errno_to_status( int err )
}
}
extern
ssize_t
CDECL
__wine_locked_recvmsg
(
int
fd
,
struct
msghdr
*
hdr
,
int
flags
);
union
unix_sockaddr
{
struct
sockaddr
addr
;
...
...
@@ -349,7 +347,7 @@ static NTSTATUS try_recv( int fd, struct async_recv_ioctl *async, ULONG_PTR *siz
hdr
.
msg_control
=
control_buffer
;
hdr
.
msg_controllen
=
sizeof
(
control_buffer
);
#endif
while
((
ret
=
__wine
_locked_recvmsg
(
fd
,
&
hdr
,
async
->
unix_flags
))
<
0
&&
errno
==
EINTR
);
while
((
ret
=
virtual
_locked_recvmsg
(
fd
,
&
hdr
,
async
->
unix_flags
))
<
0
&&
errno
==
EINTR
);
if
(
ret
<
0
)
{
...
...
dlls/ntdll/unix/unix_private.h
View file @
ac3ec2d9
...
...
@@ -27,6 +27,8 @@
#include "wine/server.h"
#include "wine/list.h"
struct
msghdr
;
#ifdef __i386__
static
const
WORD
current_machine
=
IMAGE_FILE_MACHINE_I386
;
#elif defined(__x86_64__)
...
...
@@ -216,6 +218,7 @@ extern NTSTATUS virtual_handle_fault( void *addr, DWORD err, void *stack ) DECLS
extern
unsigned
int
virtual_locked_server_call
(
void
*
req_ptr
)
DECLSPEC_HIDDEN
;
extern
ssize_t
virtual_locked_read
(
int
fd
,
void
*
addr
,
size_t
size
)
DECLSPEC_HIDDEN
;
extern
ssize_t
virtual_locked_pread
(
int
fd
,
void
*
addr
,
size_t
size
,
off_t
offset
)
DECLSPEC_HIDDEN
;
extern
ssize_t
virtual_locked_recvmsg
(
int
fd
,
struct
msghdr
*
hdr
,
int
flags
)
DECLSPEC_HIDDEN
;
extern
BOOL
virtual_is_valid_code_address
(
const
void
*
addr
,
SIZE_T
size
)
DECLSPEC_HIDDEN
;
extern
void
*
virtual_setup_exception
(
void
*
stack_ptr
,
size_t
size
,
EXCEPTION_RECORD
*
rec
)
DECLSPEC_HIDDEN
;
extern
BOOL
virtual_check_buffer_for_read
(
const
void
*
ptr
,
SIZE_T
size
)
DECLSPEC_HIDDEN
;
...
...
dlls/ntdll/unix/virtual.c
View file @
ac3ec2d9
...
...
@@ -3356,9 +3356,9 @@ ssize_t virtual_locked_pread( int fd, void *addr, size_t size, off_t offset )
/***********************************************************************
*
__wine_locked_recvmsg (NTDLL.@)
*
virtual_locked_recvmsg
*/
ssize_t
CDECL
__wine
_locked_recvmsg
(
int
fd
,
struct
msghdr
*
hdr
,
int
flags
)
ssize_t
virtual
_locked_recvmsg
(
int
fd
,
struct
msghdr
*
hdr
,
int
flags
)
{
sigset_t
sigset
;
size_t
i
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment