// Copyright 2009 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. #include "runtime.h" #include "os.h" extern void *runtime·get_kernel_module(void); // Also referenced by external packages void *runtime·CloseHandle; void *runtime·ExitProcess; void *runtime·GetStdHandle; void *runtime·SetEvent; void *runtime·WriteFile; void *runtime·VirtualAlloc; void *runtime·VirtualFree; void *runtime·LoadLibraryEx; void *runtime·GetProcAddress; void *runtime·GetLastError; void *runtime·SetLastError; static void *CreateEvent; static void *CreateThread; static void *WaitForSingleObject; static void* get_proc_addr2(byte *base, byte *name) { byte *pe_header, *exports; uint32 entries, *addr, *names, i; uint16 *ordinals; pe_header = base+*(uint32*)(base+0x3c); exports = base+*(uint32*)(pe_header+0x78); entries = *(uint32*)(exports+0x18); addr = (uint32*)(base+*(uint32*)(exports+0x1c)); names = (uint32*)(base+*(uint32*)(exports+0x20)); ordinals = (uint16*)(base+*(uint32*)(exports+0x24)); for(i=0; ievent == 0) initevent(&l->event); if(runtime·xadd(&l->key, 1) > 1) // someone else has it; wait runtime·stdcall(WaitForSingleObject, 2, l->event, -1); } static void eventunlock(Lock *l) { if(runtime·xadd(&l->key, -1) > 0) // someone else is waiting runtime·stdcall(runtime·SetEvent, 1, l->event); } void runtime·lock(Lock *l) { if(m->locks < 0) runtime·throw("lock count"); m->locks++; eventlock(l); } void runtime·unlock(Lock *l) { m->locks--; if(m->locks < 0) runtime·throw("lock count"); eventunlock(l); } void runtime·destroylock(Lock *l) { if(l->event != 0) runtime·stdcall(runtime·CloseHandle, 1, l->event); } void runtime·noteclear(Note *n) { eventlock(&n->lock); } void runtime·notewakeup(Note *n) { eventunlock(&n->lock); } void runtime·notesleep(Note *n) { eventlock(&n->lock); eventunlock(&n->lock); // Let other sleepers find out too. } void runtime·newosproc(M *m, G *g, void *stk, void (*fn)(void)) { USED(stk); USED(g); // assuming g = m->g0 USED(fn); // assuming fn = mstart runtime·stdcall(CreateThread, 6, 0, 0, runtime·tstart_stdcall, m, 0, 0); } // Called to initialize a new m (including the bootstrap m). void runtime·minit(void) { } // Calling stdcall on os stack. #pragma textflag 7 void * runtime·stdcall(void *fn, int32 count, ...) { return runtime·stdcall_raw(fn, count, (uintptr*)(&count + 1)); } void runtime·syscall(StdcallParams *p) { uintptr a; runtime·entersyscall(); // TODO(brainman): Move calls to SetLastError and GetLastError // to stdcall_raw to speed up syscall. a = 0; runtime·stdcall_raw(runtime·SetLastError, 1, &a); p->r = (uintptr)runtime·stdcall_raw((void*)p->fn, p->n, p->args); p->err = (uintptr)runtime·stdcall_raw(runtime·GetLastError, 0, &a); runtime·exitsyscall(); }