X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Fwin32-os.c;h=8ec02db4e86877fcbffdca9ef2dd70e57aa8f83a;hb=1363121ddb1d2e722e2e41d1c93758551066797c;hp=75b2b87e36ab8d4eef86262d7964fa7522fea91d;hpb=ddea5519ad6521d471d732f7d22d8f6ad823772d;p=sbcl.git diff --git a/src/runtime/win32-os.c b/src/runtime/win32-os.c index 75b2b87..8ec02db 100644 --- a/src/runtime/win32-os.c +++ b/src/runtime/win32-os.c @@ -38,6 +38,7 @@ #include "interrupt.h" #include "interr.h" #include "lispregs.h" +#include "runtime.h" #include "monitor.h" #include "alloc.h" #include "genesis/primitive-objects.h" @@ -581,6 +582,28 @@ void *memcpy(void *dest, const void *src, size_t n) return dest; } +char *dirname(char *path) +{ + static char buf[PATH_MAX + 1]; + size_t pathlen = strlen(path); + int i; + + if (pathlen >= sizeof(buf)) { + lose("Pathname too long in dirname.\n"); + return NULL; + } + + strcpy(buf, path); + for (i = pathlen; i >= 0; --i) { + if (buf[i] == '/' || buf[i] == '\\') { + buf[i] = '\0'; + break; + } + } + + return buf; +} + /* This is a manually-maintained version of ldso_stubs.S. */ void scratch(void) @@ -598,9 +621,34 @@ void scratch(void) dup(0); LoadLibrary(0); GetProcAddress(0, 0); + FreeLibrary(0); mkdir(0); isatty(0); access(0,0); + GetLastError(); + FormatMessageA(0, 0, 0, 0, 0, 0, 0); + _get_osfhandle(0); + ReadFile(0, 0, 0, 0, 0); + WriteFile(0, 0, 0, 0, 0); + PeekNamedPipe(0, 0, 0, 0, 0, 0); + FlushConsoleInputBuffer(0); + PeekConsoleInput(0, 0, 0, 0); + Sleep(0); +} + +char * +os_get_runtime_executable_path() +{ + char path[MAX_PATH + 1]; + DWORD bufsize = sizeof(path); + DWORD size; + + if ((size = GetModuleFileNameA(NULL, path, bufsize)) == 0) + return NULL; + else if (size == bufsize && GetLastError() == ERROR_INSUFFICIENT_BUFFER) + return NULL; + + return copied_string(path); } /* EOF */