Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 2966 → Rev 2967

/drivers/include/syscall.h
37,7 → 37,10
 
addr_t STDCALL AllocPage(void)__asm__("AllocPage");
addr_t STDCALL AllocPages(count_t count)__asm__("AllocPages");
void IMPORT __attribute__((regparm(1)))
FreePage(addr_t page)__asm__("FreePage");
 
 
void* STDCALL CreateRingBuffer(size_t size, u32_t map)__asm__("CreateRingBuffer");
 
u32_t STDCALL RegService(char *name, srv_proc_t proc)__asm__("RegService");
51,6 → 54,9
addr_t IMPORT GetStackBase(void)__asm__("GetStackBase");
u32_t IMPORT GetPid(void)__asm__("GetPid");
 
u32 STDCALL TimerHs(u32 delay, u32 interval,
void *fn, void *data)asm("TimerHs");
 
///////////////////////////////////////////////////////////////////////////////
 
void STDCALL SetMouseData(int btn, int x, int y,
85,7 → 91,6
#define pciWriteLong(tag, reg, val) \
PciWrite32(PCI_BUS_FROM_TAG(tag),PCI_DFN_FROM_TAG(tag),(reg),(val))
 
 
///////////////////////////////////////////////////////////////////////////////
 
int dbg_open(char *path);
125,6 → 130,14
__asm__ __volatile__ ("":::"ebx","ecx","edx","esi","edi");
};
 
static inline void DestroyEvent(evhandle_t evh)
{
__asm__ __volatile__ (
"call *__imp__DestroyEvent"
::"a"(evh.handle),"b"(evh.euid));
__asm__ __volatile__ ("":::"ebx","ecx","edx","esi","edi");
};
 
static inline u32_t GetEvent(kevent_t *ev)
{
u32_t handle;
175,7 → 188,7
 
__asm__ __volatile__ (
"call *__imp__GetPgAddr \n\t"
:"=eax" (retval)
:"=a" (retval)
:"a" (mem) );
return retval;
};
216,7 → 229,7
static inline void udelay(u32_t delay)
{
if(!delay) delay++;
delay*= 500;
delay*= 100;
 
while(delay--)
{
298,7 → 311,7
(
"pushl %%eax \n\t"
"call *__imp__GetService"
:"=eax" (handle)
:"=a" (handle)
:"a" (name)
:"ebx","ecx","edx","esi", "edi"
);
417,7 → 430,7
 
static inline void __iomem *ioremap(uint32_t offset, size_t size)
{
return (void __iomem*) MapIoMem(offset, size, 3);
return (void __iomem*) MapIoMem(offset, size, PG_SW|PG_NOCACHE);
}
 
static inline void iounmap(void *addr)