Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Collins <rbtcollins@hotmail.com>2001-11-09 14:34:26 +0300
committerRobert Collins <rbtcollins@hotmail.com>2001-11-09 14:34:26 +0300
commitd0d69f141d71c421f3f6ad8cdb842003a556d626 (patch)
tree451816d2a321355af8239cc38332ef75c59f088e
parent29c63d063fe3537b920d4f8bbb16a885ad414ed6 (diff)
2001-11-09 Robert Collins <rbtcollins@hotmail.com>
* include/winnt.h (GetCurrentFiber): Create a prototype before the implementation; (GetFiberData): Ditto.
-rw-r--r--winsup/w32api/ChangeLog5
-rw-r--r--winsup/w32api/include/winnt.h3
2 files changed, 7 insertions, 1 deletions
diff --git a/winsup/w32api/ChangeLog b/winsup/w32api/ChangeLog
index 6c2615e03..b7a7239cc 100644
--- a/winsup/w32api/ChangeLog
+++ b/winsup/w32api/ChangeLog
@@ -1,5 +1,10 @@
2001-11-09 Robert Collins <rbtcollins@hotmail.com>
+ * include/winnt.h (GetCurrentFiber): Create a prototype before the implementation;
+ (GetFiberData): Ditto.
+
+2001-11-09 Robert Collins <rbtcollins@hotmail.com>
+
* include/winnt.h: Backout last change.
2001-11-08 Robert Collins <rbtcollins@hotmail.com>
diff --git a/winsup/w32api/include/winnt.h b/winsup/w32api/include/winnt.h
index 65f5d157d..345f4462a 100644
--- a/winsup/w32api/include/winnt.h
+++ b/winsup/w32api/include/winnt.h
@@ -2524,6 +2524,7 @@ typedef struct _REPARSE_POINT_INFORMATION {
WORD ReparseDataLength;
WORD UnparsedNameLength;
} REPARSE_POINT_INFORMATION, *PREPARSE_POINT_INFORMATION;
+PVOID GetCurrentFiber(void);
extern __inline__ PVOID GetCurrentFiber(void)
{
void* ret;
@@ -2534,7 +2535,7 @@ extern __inline__ PVOID GetCurrentFiber(void)
);
return ret;
}
-
+PVOID GetFiberData(void);
extern __inline__ PVOID GetFiberData(void)
{
void* ret;