* include/winnt.h (GetCurrentFiber): Remove blank input field

in asm code.
	(GetFiberData): Likewise.
This commit is contained in:
Danny Smith 2003-01-02 23:30:27 +00:00
parent 6283f02c25
commit c7ceb003b2
2 changed files with 13 additions and 9 deletions

View File

@ -1,3 +1,9 @@
2003-01-02 Danny Smith <dannysmith@users.sourceforge.net>
* include/winnt.h (GetCurrentFiber): Remove blank input field in
asm code.
(GetFiberData): Likewise.
2003-01-02 Danny Smith <dannysmith@users.sourceforge.net>
* include/winerror.h (ERROR_DIFFERENT_SERVICE_ACCOUNT,

View File

@ -2674,7 +2674,6 @@ extern __inline__ PVOID GetCurrentFiber(void)
__asm__ volatile (
"movl %%fs:0x10,%0"
: "=r" (ret) /* allow use of reg eax,ebx,ecx,edx,esi,edi */
:
);
return ret;
}
@ -2687,7 +2686,6 @@ extern __inline__ PVOID GetFiberData(void)
"movl %%fs:0x10,%0\n"
"movl (%0),%0"
: "=r" (ret) /* allow use of reg eax,ebx,ecx,edx,esi,edi */
:
);
return ret;
}