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
c76ad35a
Commit
c76ad35a
authored
Nov 13, 1999
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added get_page_size function.
parent
8b8828f5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
0 deletions
+10
-0
mapping.c
server/mapping.c
+6
-0
object.h
server/object.h
+4
-0
No files found.
server/mapping.c
View file @
c76ad35a
...
...
@@ -149,6 +149,12 @@ static void mapping_destroy( struct object *obj )
if
(
mapping
->
file
)
release_object
(
mapping
->
file
);
}
int
get_page_size
(
void
)
{
if
(
!
page_mask
)
init_page_size
();
return
page_mask
+
1
;
}
/* create a file mapping */
DECL_HANDLER
(
create_mapping
)
{
...
...
server/object.h
View file @
c76ad35a
...
...
@@ -159,6 +159,10 @@ extern int free_console( struct process *process );
extern
int
debugger_attach
(
struct
process
*
process
,
struct
thread
*
debugger
);
extern
void
debug_exit_thread
(
struct
thread
*
thread
,
int
exit_code
);
/* mapping functions */
extern
int
get_page_size
(
void
);
extern
int
debug_level
;
#endif
/* __WINE_SERVER_OBJECT_H */
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