Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
e9afc9bf
Commit
e9afc9bf
authored
Nov 17, 2023
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winebuild: Stop generating the syscall argument array and related data.
parent
85dbc046
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
10 deletions
+2
-10
loader.c
dlls/ntdll/loader.c
+1
-0
main.c
dlls/win32u/main.c
+1
-1
import.c
tools/winebuild/import.c
+0
-9
No files found.
dlls/ntdll/loader.c
View file @
e9afc9bf
...
@@ -80,6 +80,7 @@ static DWORD (WINAPI *pCtrlRoutine)(void *);
...
@@ -80,6 +80,7 @@ static DWORD (WINAPI *pCtrlRoutine)(void *);
SYSTEM_DLL_INIT_BLOCK
LdrSystemDllInitBlock
=
{
0xf0
};
SYSTEM_DLL_INIT_BLOCK
LdrSystemDllInitBlock
=
{
0xf0
};
void
*
__wine_syscall_dispatcher
=
NULL
;
unixlib_handle_t
__wine_unixlib_handle
=
0
;
unixlib_handle_t
__wine_unixlib_handle
=
0
;
/* windows directory */
/* windows directory */
...
...
dlls/win32u/main.c
View file @
e9afc9bf
...
@@ -27,7 +27,7 @@
...
@@ -27,7 +27,7 @@
#include "ntgdi.h"
#include "ntgdi.h"
#include "wine/unixlib.h"
#include "wine/unixlib.h"
extern
void
*
__wine_syscall_dispatcher
DECLSPEC_HIDDEN
;
void
*
__wine_syscall_dispatcher
=
NULL
;
static
unixlib_handle_t
win32u_handle
;
static
unixlib_handle_t
win32u_handle
;
...
...
tools/winebuild/import.c
View file @
e9afc9bf
...
@@ -1519,15 +1519,6 @@ void output_syscalls( DLLSPEC *spec )
...
@@ -1519,15 +1519,6 @@ void output_syscalls( DLLSPEC *spec )
default:
default:
break
;
break
;
}
}
output
(
"
\t
.data
\n
"
);
output
(
"
\t
.balign %u
\n
"
,
get_ptr_size
()
);
output
(
"%s
\n
"
,
asm_globl
(
"__wine_syscall_dispatcher"
)
);
output
(
"
\t
%s 0
\n
"
,
get_asm_ptr_keyword
()
);
/* dispatcher */
output
(
"
\t
.long 0xca110001
\n
"
);
/* version */
output
(
"
\t
.short %u
\n
"
,
spec
->
syscall_table
);
/* id */
output
(
"
\t
.short %u
\n
"
,
count
);
/* limit */
for
(
i
=
0
;
i
<
count
;
i
++
)
output
(
"
\t
.short %u
\n
"
,
syscalls
[
i
]
->
hint
);
for
(
i
=
0
;
i
<
count
;
i
++
)
output
(
"
\t
.byte %u
\n
"
,
get_args_size
(
syscalls
[
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