Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
James Carthew
wine
Commits
e6e2f232
Commit
e6e2f232
authored
4 years ago
by
Alexandre Julliard
Browse files
Options
Downloads
Patches
Plain Diff
ntdll: Don't include ntdll_misc.h from the Unix library.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
e854ea34
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dlls/ntdll/unix/debug.c
+4
-1
4 additions, 1 deletion
dlls/ntdll/unix/debug.c
dlls/ntdll/unix/unix_private.h
+27
-0
27 additions, 0 deletions
dlls/ntdll/unix/unix_private.h
with
31 additions
and
1 deletion
dlls/ntdll/unix/debug.c
+
4
−
1
View file @
e6e2f232
...
...
@@ -33,8 +33,11 @@
# include <unistd.h>
#endif
#include
"windef.h"
#include
"winnt.h"
#include
"winternl.h"
#include
"unix_private.h"
#include
"wine/debug.h"
#include
"ntdll_misc.h"
WINE_DECLARE_DEBUG_CHANNEL
(
pid
);
WINE_DECLARE_DEBUG_CHANNEL
(
timestamp
);
...
...
This diff is collapsed.
Click to expand it.
dlls/ntdll/unix/unix_private.h
+
27
−
0
View file @
e6e2f232
...
...
@@ -23,6 +23,33 @@
#include
"unixlib.h"
struct
debug_info
{
unsigned
int
str_pos
;
/* current position in strings buffer */
unsigned
int
out_pos
;
/* current position in output buffer */
char
strings
[
1024
];
/* buffer for temporary strings */
char
output
[
1024
];
/* current output line */
};
/* thread private data, stored in NtCurrentTeb()->GdiTebBatch */
struct
ntdll_thread_data
{
struct
debug_info
*
debug_info
;
/* info for debugstr functions */
void
*
start_stack
;
/* stack for thread startup */
int
request_fd
;
/* fd for sending server requests */
int
reply_fd
;
/* fd for receiving server replies */
int
wait_fd
[
2
];
/* fd for sleeping server requests */
BOOL
wow64_redir
;
/* Wow64 filesystem redirection flag */
pthread_t
pthread_id
;
/* pthread thread id */
};
C_ASSERT
(
sizeof
(
struct
ntdll_thread_data
)
<=
sizeof
(((
TEB
*
)
0
)
->
GdiTebBatch
)
);
static
inline
struct
ntdll_thread_data
*
ntdll_get_thread_data
(
void
)
{
return
(
struct
ntdll_thread_data
*
)
&
NtCurrentTeb
()
->
GdiTebBatch
;
}
void
CDECL
mmap_add_reserved_area
(
void
*
addr
,
SIZE_T
size
)
DECLSPEC_HIDDEN
;
void
CDECL
mmap_remove_reserved_area
(
void
*
addr
,
SIZE_T
size
)
DECLSPEC_HIDDEN
;
int
CDECL
mmap_is_in_reserved_area
(
void
*
addr
,
SIZE_T
size
)
DECLSPEC_HIDDEN
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment