Index: uspace/lib/libc/generic/async.c
===================================================================
--- uspace/lib/libc/generic/async.c	(revision ef8bcc6df47519f80b0b59ebb86b4c416a742a7b)
+++ uspace/lib/libc/generic/async.c	(revision 04717864998bfc373f375b3f00bd2cf8e3c153c1)
@@ -179,5 +179,4 @@
 static void default_client_connection(ipc_callid_t callid, ipc_call_t *call);
 static void default_interrupt_received(ipc_callid_t callid, ipc_call_t *call);
-static void default_pending(void);
 
 /**
@@ -191,10 +190,4 @@
  */
 static async_client_conn_t interrupt_received = default_interrupt_received;
-
-/**
- * Pointer to a fibril function that will be used to handle pending
- * operations.
- */
-static async_pending_t pending = default_pending;
 
 static hash_table_t conn_hash_table;
@@ -376,40 +369,4 @@
 	
 	fid_t fid = fibril_create(notification_fibril, msg);
-	fibril_add_ready(fid);
-	
-	futex_up(&async_futex);
-	return true;
-}
-
-/** Pending fibril.
- *
- * After each call the pending operations are executed in a separate
- * fibril. The function pending() is c.
- *
- * @param arg Unused.
- *
- * @return Always zero.
- *
- */
-static int pending_fibril(void *arg)
-{
-	pending();
-	
-	return 0;
-}
-
-/** Process pending actions.
- *
- * A new fibril is created which would process the pending operations.
- *
- * @return False if an error occured.
- *         True if the execution was passed to the pending fibril.
- *
- */
-static bool process_pending(void)
-{
-	futex_down(&async_futex);
-	
-	fid_t fid = fibril_create(pending_fibril, NULL);
 	fibril_add_ready(fid);
 	
@@ -514,13 +471,4 @@
 }
 
-/** Default fibril function that gets called to handle pending operations.
- *
- * This function is defined as a weak symbol - to be redefined in user code.
- *
- */
-static void default_pending(void)
-{
-}
-
 /** Wrapper for client connection fibril.
  *
@@ -661,5 +609,5 @@
 	
 out:
-	process_pending();
+	;
 }
 
@@ -1050,14 +998,4 @@
 }
 
-/** Setter for pending function pointer.
- *
- * @param pend Function that will implement a new pending
- *             operations fibril.
- */
-void async_set_pending(async_pending_t pend)
-{
-	pending = pend;
-}
-
 /** Pseudo-synchronous message sending - fast version.
  *
