+KeWaitForSingleObject()
authorshort <>
Mon, 4 Nov 2002 08:57:21 +0000 (08:57 +0000)
committershort <>
Mon, 4 Nov 2002 08:57:21 +0000 (08:57 +0000)
src/libcaptive/ke/Makefile.am
src/libcaptive/ke/wait.c [new file with mode: 0644]

index 3443864..a684b97 100644 (file)
@@ -25,7 +25,8 @@ libke_la_SOURCES= \
                event.c \
                kthread.c \
                sem.c \
-               spinlock.c
+               spinlock.c \
+               wait.c
 
 EXTRA_DIST+= \
                $(noinst_SCRIPTS) \
diff --git a/src/libcaptive/ke/wait.c b/src/libcaptive/ke/wait.c
new file mode 100644 (file)
index 0000000..3a65476
--- /dev/null
@@ -0,0 +1,50 @@
+/* $Id$
+ * reactos object wait emulation of libcaptive
+ * Copyright (C) 2002 Jan Kratochvil <project-captive@jankratochvil.net>
+ * 
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; exactly version 2 of June 1991 is required
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ */
+
+
+#include "config.h"
+
+#include "reactos/ddk/kefuncs.h"       /* self */
+#include "reactos/ddk/status.h"        /* for STATUS_SUCCESS */
+#include "reactos/napi/types.h"        /* for NTSTATUS */
+#include <glib/gmessages.h>
+
+
+/**
+ * KeWaitForSingleObject:
+ * @Object: Ignored. %NULL value is forbidden.
+ * @WaitReason: Ignored.
+ * @WaitMode: Ignored.
+ * @Alertable: Ignored.
+ * @Timeout: Ignored.
+ *
+ * Puts the current thread into a wait state until the
+ * given dispatcher @Object is set to signalled.
+ * Currently libcaptive doesn't use multithreading
+ * and thus this function is a NOP now.
+ *
+ * Returns: %STATUS_SUCCESS.
+ */
+NTSTATUS KeWaitForSingleObject
+               (PVOID Object,KWAIT_REASON WaitReason,KPROCESSOR_MODE WaitMode,BOOLEAN Alertable,PLARGE_INTEGER Timeout)
+{
+       g_return_val_if_fail(Object!=NULL,STATUS_INVALID_PARAMETER);
+
+       /* TODO:thread */
+       return STATUS_SUCCESS;
+}