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
d8c41a25
Commit
d8c41a25
authored
Apr 14, 2008
by
Francois Gouget
Committed by
Alexandre Julliard
Apr 14, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Spelling fix in the ldt bitfields.
parent
4ba16af1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
ldt.c
libs/wine/ldt.c
+2
-2
preloader.c
loader/preloader.c
+1
-1
No files found.
libs/wine/ldt.c
View file @
d8c41a25
...
@@ -52,7 +52,7 @@ struct modify_ldt_s
...
@@ -52,7 +52,7 @@ struct modify_ldt_s
unsigned
int
read_exec_only
:
1
;
unsigned
int
read_exec_only
:
1
;
unsigned
int
limit_in_pages
:
1
;
unsigned
int
limit_in_pages
:
1
;
unsigned
int
seg_not_present
:
1
;
unsigned
int
seg_not_present
:
1
;
unsigned
int
us
e
able
:
1
;
unsigned
int
usable
:
1
;
unsigned
int
garbage
:
25
;
unsigned
int
garbage
:
25
;
};
};
...
@@ -65,7 +65,7 @@ static inline void fill_modify_ldt_struct( struct modify_ldt_s *ptr, const LDT_E
...
@@ -65,7 +65,7 @@ static inline void fill_modify_ldt_struct( struct modify_ldt_s *ptr, const LDT_E
ptr
->
read_exec_only
=
!
(
entry
->
HighWord
.
Bits
.
Type
&
2
);
ptr
->
read_exec_only
=
!
(
entry
->
HighWord
.
Bits
.
Type
&
2
);
ptr
->
limit_in_pages
=
entry
->
HighWord
.
Bits
.
Granularity
;
ptr
->
limit_in_pages
=
entry
->
HighWord
.
Bits
.
Granularity
;
ptr
->
seg_not_present
=
!
entry
->
HighWord
.
Bits
.
Pres
;
ptr
->
seg_not_present
=
!
entry
->
HighWord
.
Bits
.
Pres
;
ptr
->
us
eable
=
entry
->
HighWord
.
Bits
.
Sys
;
ptr
->
us
able
=
entry
->
HighWord
.
Bits
.
Sys
;
ptr
->
garbage
=
0
;
ptr
->
garbage
=
0
;
}
}
...
...
loader/preloader.c
View file @
d8c41a25
...
@@ -178,7 +178,7 @@ struct
...
@@ -178,7 +178,7 @@ struct
unsigned
int
read_exec_only
:
1
;
unsigned
int
read_exec_only
:
1
;
unsigned
int
limit_in_pages
:
1
;
unsigned
int
limit_in_pages
:
1
;
unsigned
int
seg_not_present
:
1
;
unsigned
int
seg_not_present
:
1
;
unsigned
int
us
e
able
:
1
;
unsigned
int
usable
:
1
;
unsigned
int
garbage
:
25
;
unsigned
int
garbage
:
25
;
}
thread_ldt
=
{
-
1
,
(
unsigned
long
)
thread_data
,
0xfffff
,
1
,
0
,
0
,
1
,
0
,
1
,
0
};
}
thread_ldt
=
{
-
1
,
(
unsigned
long
)
thread_data
,
0xfffff
,
1
,
0
,
0
,
1
,
0
,
1
,
0
};
...
...
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