X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Fwin32-os.h;h=7f5015590c5ffff618a8fbe65d2e8e6d605728d7;hb=43c6634142a96e1d1bab2efe1a39cd8234903c41;hp=9fca92e605e7387f1aaa9fe50856abdbff41747b;hpb=7aef55b130d95c384b63422807f1848faa9aba5a;p=sbcl.git diff --git a/src/runtime/win32-os.h b/src/runtime/win32-os.h index 9fca92e..7f50155 100644 --- a/src/runtime/win32-os.h +++ b/src/runtime/win32-os.h @@ -37,10 +37,6 @@ typedef sem_t os_sem_t; typedef void *siginfo_t; #endif -/* Note: This typedef will moved to runtime.h when AMD64 changes are being - * merged. */ -typedef unsigned long uword_t; - typedef LPVOID os_vm_address_t; typedef uword_t os_vm_size_t; typedef intptr_t os_vm_offset_t; @@ -83,6 +79,8 @@ char *dirname(char *path); void os_invalidate_free(os_vm_address_t addr, os_vm_size_t len); +boolean win32_maybe_interrupt_io(void* thread); + #define bcopy(src,dest,n) memmove(dest,src,n) struct thread;