Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1435 → Rev 1430

/uspace/trunk/libc/include/time.h
File deleted
/uspace/trunk/libc/include/ipc/services.h
37,9 → 37,6
#define SERVICE_PCI 1
#define SERVICE_FRAME_BUFFER 2
#define SERVICE_KEYBOARD 3
#define SERVICE_VIDEO 4
#define SERVICE_VIDEO 4
 
/* Memory area to be received from NS */
#define SERVICE_MEM_REALTIME 1
 
#endif
/uspace/trunk/libc/generic/time.c
File deleted
/uspace/trunk/libc/generic/async.c
331,7 → 331,6
{
ipc_call_t call;
ipc_callid_t callid;
int timeout;
 
while (1) {
if (psthread_schedule_next_adv(PS_FROM_MANAGER)) {
340,19 → 339,8
*/
continue;
}
/*
if (expires)
timeout = .... ;
else
*/
timeout = SYNCH_NO_TIMEOUT;
callid = ipc_wait_cycle(&call, timeout, SYNCH_BLOCKING);
callid = ipc_wait_cycle(&call,SYNCH_NO_TIMEOUT,SYNCH_BLOCKING);
 
if (!callid) {
// handle_expired_timeouts.......;
continue;
}
 
if (callid & IPC_CALLID_ANSWERED)
continue;
 
416,8 → 404,7
*/
if (msg->dataptr)
*msg->dataptr = *data;
 
/* TODO: memory barrier?? */
msg->done = 1;
if (! msg->active) {
msg->active = 1;
473,38 → 460,3
*retval = msg->retval;
free(msg);
}
 
 
/* int async_wait_timeout(aid_t amsgid, ipcarg_t *retval, int timeout) */
/* { */
/* amsg_t *msg = (amsg_t *) amsgid; */
/* connection_t *conn; */
 
/* futex_down(&async_futex); */
/* if (msg->done) { */
/* futex_up(&async_futex); */
/* goto done; */
/* } */
 
/* msg->ptid = psthread_get_id(); */
/* msg->active = 0; */
/* msg->expires = gettime() + timeout; */
/* setup_timeouts_etc...(); */
 
/* /\* Leave locked async_futex when entering this function *\/ */
/* psthread_schedule_next_adv(PS_TO_MANAGER); */
/* /\* futex is up automatically after psthread_schedule_next...*\/ */
 
/* if (!msg->done) */
/* return casy-casy; */
 
/* /\* TODO: When memory barrier in reply_received, we can skip this *\/ */
/* futex_down(&async_futex); */
/* futex_up(&async_futex); */
/* done: */
/* if (retval) */
/* *retval = msg->retval; */
/* free(msg); */
/* } */
 
/uspace/trunk/libc/Makefile
65,8 → 65,7
generic/ipc.c \
generic/async.c \
generic/libadt/list.o \
generic/libadt/hash_table.o \
generic/time.c
generic/libadt/hash_table.o
 
ARCH_SOURCES += \
arch/$(ARCH)/src/entry.s \