newlib: struct dirent

pixlib3: enable linear texture filtration
libsync: user space synchronization

git-svn-id: svn://kolibrios.org@5602 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
Sergey Semyonov (Serge)
2015-07-23 10:10:52 +00:00
parent fb406006f7
commit 1918b713af
11 changed files with 1983 additions and 9 deletions

View File

@@ -0,0 +1,18 @@
format MS COFF
use32
MUTEX.lock equ 0
MUTEX.handle equ 4
section '.text' align 16 code readable executable
public @mutex_destroy@4
@mutex_destroy@4:
push ebx
mov ecx, [ecx+MUTEX.handle]
mov eax, 77
mov ebx, 1
int 0x40
pop ebx
ret