From 02f6645fca946fd7cb9f55036c05a908f0567ceb Mon Sep 17 00:00:00 2001 From: Eric Holk Date: Tue, 28 Jun 2011 11:34:20 -0700 Subject: Moved win32_require to the kernel. --- src/rt/rust_kernel.cpp | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'src/rt/rust_kernel.cpp') diff --git a/src/rt/rust_kernel.cpp b/src/rt/rust_kernel.cpp index 5e495b8c822..ee709fb191f 100644 --- a/src/rt/rust_kernel.cpp +++ b/src/rt/rust_kernel.cpp @@ -245,6 +245,25 @@ int rust_kernel::start_task_threads(int num_threads) return dom->rval; } +#ifdef __WIN32__ +void +rust_kernel::win32_require(LPCTSTR fn, BOOL ok) { + if (!ok) { + LPTSTR buf; + DWORD err = GetLastError(); + FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER | + FORMAT_MESSAGE_FROM_SYSTEM | + FORMAT_MESSAGE_IGNORE_INSERTS, + NULL, err, + MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), + (LPTSTR) &buf, 0, NULL ); + DLOG_ERR(dom, dom, "%s failed with error %ld: %s", fn, err, buf); + LocalFree((HLOCAL)buf); + I(dom, ok); + } +} +#endif + rust_task_thread::rust_task_thread(int id, rust_kernel *owner) : id(id), owner(owner) { -- cgit 1.4.1-3-g733a5