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
462172a3
Commit
462172a3
authored
Apr 02, 2003
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added abs_time_t structure to the server protocol, and added a dump
routine for it that displays the relative timeout to make timeout values easier to interpret.
parent
cc365bd8
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
79 additions
and
47 deletions
+79
-47
ntdll_misc.h
dlls/ntdll/ntdll_misc.h
+2
-1
sync.c
dlls/ntdll/sync.c
+1
-5
time.c
dlls/ntdll/time.c
+11
-9
server_protocol.h
include/wine/server_protocol.h
+10
-5
timer.c
scheduler/timer.c
+5
-8
protocol.def
server/protocol.def
+9
-4
thread.c
server/thread.c
+6
-6
timer.c
server/timer.c
+5
-5
trace.c
server/trace.c
+29
-4
make_requests
tools/make_requests
+1
-0
No files found.
dlls/ntdll/ntdll_misc.h
View file @
462172a3
...
...
@@ -23,12 +23,13 @@
#include "winternl.h"
#include "module.h"
#include "thread.h"
#include "wine/server.h"
/* debug helper */
extern
LPCSTR
debugstr_us
(
const
UNICODE_STRING
*
str
);
extern
void
dump_ObjectAttributes
(
const
OBJECT_ATTRIBUTES
*
ObjectAttributes
);
extern
void
NTDLL_get_server_timeout
(
struct
timeval
*
when
,
const
LARGE_INTEGER
*
timeout
);
extern
void
NTDLL_get_server_timeout
(
abs_time_t
*
when
,
const
LARGE_INTEGER
*
timeout
);
/* module handling */
extern
FARPROC
MODULE_GetProcAddress
(
HMODULE
hModule
,
LPCSTR
function
,
int
hint
,
BOOL
snoop
);
...
...
dlls/ntdll/sync.c
View file @
462172a3
...
...
@@ -412,20 +412,16 @@ NTSTATUS WINAPI NtWaitForMultipleObjects( DWORD count, const HANDLE *handles,
PLARGE_INTEGER
timeout
)
{
int
ret
,
cookie
;
struct
timeval
tv
;
if
(
count
>
MAXIMUM_WAIT_OBJECTS
)
return
STATUS_INVALID_PARAMETER_1
;
NTDLL_get_server_timeout
(
&
tv
,
timeout
);
for
(;;)
{
SERVER_START_REQ
(
select
)
{
req
->
flags
=
SELECT_INTERRUPTIBLE
;
req
->
cookie
=
&
cookie
;
req
->
sec
=
tv
.
tv_sec
;
req
->
usec
=
tv
.
tv_usec
;
NTDLL_get_server_timeout
(
&
req
->
timeout
,
timeout
);
wine_server_add_data
(
req
,
handles
,
count
*
sizeof
(
HANDLE
)
);
if
(
wait_all
)
req
->
flags
|=
SELECT_ALL
;
...
...
dlls/ntdll/time.c
View file @
462172a3
...
...
@@ -40,6 +40,7 @@
#include "winternl.h"
#include "wine/unicode.h"
#include "wine/debug.h"
#include "ntdll_misc.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
ntdll
);
...
...
@@ -299,30 +300,31 @@ static inline void NormalizeTimeFields(CSHORT *FieldToNormalize, CSHORT *CarryFi
*
* Convert a NTDLL timeout into a timeval struct to send to the server.
*/
void
NTDLL_get_server_timeout
(
struct
timeval
*
when
,
const
LARGE_INTEGER
*
timeout
)
void
NTDLL_get_server_timeout
(
abs_time_t
*
when
,
const
LARGE_INTEGER
*
timeout
)
{
UINT
remainder
;
if
(
!
timeout
)
/* infinite timeout */
{
when
->
tv_sec
=
when
->
tv_
usec
=
0
;
when
->
sec
=
when
->
usec
=
0
;
}
else
if
(
timeout
->
QuadPart
<=
0
)
/* relative timeout */
{
struct
timeval
tv
;
ULONG
sec
=
RtlEnlargedUnsignedDivide
(
-
timeout
->
QuadPart
,
TICKSPERSEC
,
&
remainder
);
gettimeofday
(
when
,
0
);
if
((
when
->
tv_usec
+=
remainder
/
10
)
>=
1000000
)
gettimeofday
(
&
tv
,
0
);
when
->
sec
=
tv
.
tv_sec
+
sec
;
if
((
when
->
usec
=
tv
.
tv_usec
+
(
remainder
/
10
))
>=
1000000
)
{
when
->
tv_
usec
-=
1000000
;
when
->
tv_
sec
++
;
when
->
usec
-=
1000000
;
when
->
sec
++
;
}
when
->
tv_sec
+=
sec
;
}
else
/* absolute time */
{
when
->
tv_
sec
=
RtlEnlargedUnsignedDivide
(
timeout
->
QuadPart
-
TICKS_1601_TO_1970
,
when
->
sec
=
RtlEnlargedUnsignedDivide
(
timeout
->
QuadPart
-
TICKS_1601_TO_1970
,
TICKSPERSEC
,
&
remainder
);
when
->
tv_
usec
=
remainder
/
10
;
when
->
usec
=
remainder
/
10
;
}
}
...
...
include/wine/server_protocol.h
View file @
462172a3
...
...
@@ -154,6 +154,13 @@ typedef struct
typedef
struct
{
int
sec
;
int
usec
;
}
abs_time_t
;
typedef
struct
{
atom_t
atom
;
short
string
;
obj_handle_t
handle
;
...
...
@@ -608,8 +615,7 @@ struct select_request
struct
request_header
__header
;
int
flags
;
void
*
cookie
;
int
sec
;
int
usec
;
abs_time_t
timeout
;
/* VARARG(handles,handles); */
};
struct
select_reply
...
...
@@ -1994,8 +2000,7 @@ struct set_timer_request
{
struct
request_header
__header
;
obj_handle_t
handle
;
int
sec
;
int
usec
;
abs_time_t
expire
;
int
period
;
void
*
callback
;
void
*
arg
;
...
...
@@ -3572,6 +3577,6 @@ union generic_reply
struct
get_next_hook_reply
get_next_hook_reply
;
};
#define SERVER_PROTOCOL_VERSION 10
3
#define SERVER_PROTOCOL_VERSION 10
4
#endif
/* __WINE_WINE_SERVER_PROTOCOL_H */
scheduler/timer.c
View file @
462172a3
...
...
@@ -130,21 +130,18 @@ BOOL WINAPI SetWaitableTimer( HANDLE handle, const LARGE_INTEGER *when, LONG per
PTIMERAPCROUTINE
callback
,
LPVOID
arg
,
BOOL
resume
)
{
BOOL
ret
;
struct
timeval
tv
;
SERVER_START_REQ
(
set_timer
)
{
if
(
!
when
->
s
.
LowPart
&&
!
when
->
s
.
HighPart
)
{
/* special case to start timeout on now+period without too many calculations */
tv
.
tv_
sec
=
0
;
tv
.
tv_
usec
=
0
;
req
->
expire
.
sec
=
0
;
req
->
expire
.
usec
=
0
;
}
else
NTDLL_get_server_timeout
(
&
tv
,
when
);
else
NTDLL_get_server_timeout
(
&
req
->
expire
,
when
);
SERVER_START_REQ
(
set_timer
)
{
req
->
handle
=
handle
;
req
->
sec
=
tv
.
tv_sec
;
req
->
usec
=
tv
.
tv_usec
;
req
->
period
=
period
;
req
->
callback
=
callback
;
req
->
arg
=
arg
;
...
...
server/protocol.def
View file @
462172a3
...
...
@@ -167,6 +167,13 @@ typedef struct
/* char title[...]; */
} startup_info_t;
/* structure for absolute timeouts */
typedef struct
{
int sec; /* seconds since Unix epoch */
int usec; /* microseconds */
} abs_time_t;
/* structure returned in the list of window properties */
typedef struct
{
...
...
@@ -486,8 +493,7 @@ enum apc_type { APC_NONE, APC_USER, APC_TIMER, APC_ASYNC, APC_ASYNC_IO };
@REQ(select)
int flags; /* wait flags (see below) */
void* cookie; /* magic cookie to return to client */
int sec; /* absolute timeout */
int usec; /* absolute timeout */
abs_time_t timeout; /* absolute timeout */
VARARG(handles,handles); /* handles to select on */
@END
#define SELECT_ALL 1
...
...
@@ -1426,8 +1432,7 @@ enum char_info_mode
/* Set a waitable timer */
@REQ(set_timer)
obj_handle_t handle; /* handle to the timer */
int sec; /* next expiration absolute time */
int usec; /* next expiration absolute time */
abs_time_t expire; /* next expiration absolute time */
int period; /* timer period in ms */
void* callback; /* callback function */
void* arg; /* callback argument */
...
...
server/thread.c
View file @
462172a3
...
...
@@ -373,7 +373,7 @@ static void end_wait( struct thread *thread )
}
/* build the thread wait structure */
static
int
wait_on
(
int
count
,
struct
object
*
objects
[],
int
flags
,
int
sec
,
int
usec
)
static
int
wait_on
(
int
count
,
struct
object
*
objects
[],
int
flags
,
const
abs_time_t
*
timeout
)
{
struct
thread_wait
*
wait
;
struct
wait_queue_entry
*
entry
;
...
...
@@ -388,8 +388,8 @@ static int wait_on( int count, struct object *objects[], int flags, int sec, int
current
->
wait
=
wait
;
if
(
flags
&
SELECT_TIMEOUT
)
{
wait
->
timeout
.
tv_sec
=
sec
;
wait
->
timeout
.
tv_usec
=
usec
;
wait
->
timeout
.
tv_sec
=
timeout
->
sec
;
wait
->
timeout
.
tv_usec
=
timeout
->
usec
;
}
for
(
i
=
0
,
entry
=
wait
->
queues
;
i
<
count
;
i
++
,
entry
++
)
...
...
@@ -518,7 +518,7 @@ static void thread_timeout( void *ptr )
/* select on a list of handles */
static
void
select_on
(
int
count
,
void
*
cookie
,
const
obj_handle_t
*
handles
,
int
flags
,
int
sec
,
int
usec
)
int
flags
,
const
abs_time_t
*
timeout
)
{
int
ret
,
i
;
struct
object
*
objects
[
MAXIMUM_WAIT_OBJECTS
];
...
...
@@ -535,7 +535,7 @@ static void select_on( int count, void *cookie, const obj_handle_t *handles,
}
if
(
i
<
count
)
goto
done
;
if
(
!
wait_on
(
count
,
objects
,
flags
,
sec
,
usec
))
goto
done
;
if
(
!
wait_on
(
count
,
objects
,
flags
,
timeout
))
goto
done
;
if
((
ret
=
check_wait
(
current
))
!=
-
1
)
{
...
...
@@ -963,7 +963,7 @@ DECL_HANDLER(resume_thread)
DECL_HANDLER
(
select
)
{
int
count
=
get_req_data_size
()
/
sizeof
(
int
);
select_on
(
count
,
req
->
cookie
,
get_req_data
(),
req
->
flags
,
req
->
sec
,
req
->
usec
);
select_on
(
count
,
req
->
cookie
,
get_req_data
(),
req
->
flags
,
&
req
->
timeout
);
}
/* queue an APC for a thread */
...
...
server/timer.c
View file @
462172a3
...
...
@@ -131,7 +131,7 @@ static void cancel_timer( struct timer *timer )
}
/* set the timer expiration and period */
static
void
set_timer
(
struct
timer
*
timer
,
int
sec
,
int
usec
,
int
period
,
static
void
set_timer
(
struct
timer
*
timer
,
const
abs_time_t
*
expire
,
int
period
,
void
*
callback
,
void
*
arg
)
{
cancel_timer
(
timer
);
...
...
@@ -140,7 +140,7 @@ static void set_timer( struct timer *timer, int sec, int usec, int period,
period
=
0
;
/* period doesn't make any sense for a manual timer */
timer
->
signaled
=
0
;
}
if
(
!
sec
&&
!
usec
)
if
(
!
expire
->
sec
&&
!
expire
->
usec
)
{
/* special case: use now + period as first expiration */
gettimeofday
(
&
timer
->
when
,
0
);
...
...
@@ -148,8 +148,8 @@ static void set_timer( struct timer *timer, int sec, int usec, int period,
}
else
{
timer
->
when
.
tv_sec
=
sec
;
timer
->
when
.
tv_usec
=
usec
;
timer
->
when
.
tv_sec
=
expire
->
sec
;
timer
->
when
.
tv_usec
=
expire
->
usec
;
}
timer
->
period
=
period
;
timer
->
callback
=
callback
;
...
...
@@ -220,7 +220,7 @@ DECL_HANDLER(set_timer)
if
((
timer
=
(
struct
timer
*
)
get_handle_obj
(
current
->
process
,
req
->
handle
,
TIMER_MODIFY_STATE
,
&
timer_ops
)))
{
set_timer
(
timer
,
req
->
sec
,
req
->
usec
,
req
->
period
,
req
->
callback
,
req
->
arg
);
set_timer
(
timer
,
&
req
->
expire
,
req
->
period
,
req
->
callback
,
req
->
arg
);
release_object
(
timer
);
}
}
...
...
server/trace.c
View file @
462172a3
...
...
@@ -59,6 +59,29 @@ static void dump_uints( const int *ptr, int len )
fputc
(
'}'
,
stderr
);
}
static
void
dump_abs_time
(
const
abs_time_t
*
time
)
{
struct
timeval
tv
;
int
secs
,
usecs
;
if
(
!
time
->
sec
&&
!
time
->
usec
)
{
fprintf
(
stderr
,
"0"
);
return
;
}
gettimeofday
(
&
tv
,
NULL
);
secs
=
time
->
sec
-
tv
.
tv_sec
;
if
((
usecs
=
time
->
usec
-
tv
.
tv_usec
)
<
0
)
{
usecs
+=
1000000
;
secs
--
;
}
if
(
secs
>
0
||
(
secs
==
0
&&
usecs
>=
0
))
fprintf
(
stderr
,
"%d.%06d (+%d.%06d)"
,
time
->
sec
,
time
->
usec
,
secs
,
usecs
);
else
fprintf
(
stderr
,
"%d.%06d (-%d.%06d)"
,
time
->
sec
,
time
->
usec
,
abs
(
secs
+
1
),
1000000
-
usecs
);
}
static
void
dump_rectangle
(
const
rectangle_t
*
rect
)
{
fprintf
(
stderr
,
"{%d,%d;%d,%d}"
,
...
...
@@ -684,8 +707,9 @@ static void dump_select_request( const struct select_request *req )
{
fprintf
(
stderr
,
" flags=%d,"
,
req
->
flags
);
fprintf
(
stderr
,
" cookie=%p,"
,
req
->
cookie
);
fprintf
(
stderr
,
" sec=%d,"
,
req
->
sec
);
fprintf
(
stderr
,
" usec=%d,"
,
req
->
usec
);
fprintf
(
stderr
,
" timeout="
);
dump_abs_time
(
&
req
->
timeout
);
fprintf
(
stderr
,
","
);
fprintf
(
stderr
,
" handles="
);
dump_varargs_handles
(
cur_size
);
}
...
...
@@ -1662,8 +1686,9 @@ static void dump_open_timer_reply( const struct open_timer_reply *req )
static
void
dump_set_timer_request
(
const
struct
set_timer_request
*
req
)
{
fprintf
(
stderr
,
" handle=%p,"
,
req
->
handle
);
fprintf
(
stderr
,
" sec=%d,"
,
req
->
sec
);
fprintf
(
stderr
,
" usec=%d,"
,
req
->
usec
);
fprintf
(
stderr
,
" expire="
);
dump_abs_time
(
&
req
->
expire
);
fprintf
(
stderr
,
","
);
fprintf
(
stderr
,
" period=%d,"
,
req
->
period
);
fprintf
(
stderr
,
" callback=%p,"
,
req
->
callback
);
fprintf
(
stderr
,
" arg=%p"
,
req
->
arg
);
...
...
tools/make_requests
View file @
462172a3
...
...
@@ -36,6 +36,7 @@
"user_handle_t"
=>
"%p"
,
"process_id_t"
=>
"%04x"
,
"thread_id_t"
=>
"%04x"
,
"abs_time_t"
=>
"&dump_abs_time"
,
"rectangle_t"
=>
"&dump_rectangle"
,
"char_info_t"
=>
"&dump_char_info"
,
);
...
...
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