Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1701 → Rev 1702

/kernel/trunk/generic/src/ipc/ipcrsc.c
26,6 → 26,12
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @addtogroup genericipc
* @{
*/
/** @file
*/
 
/* IPC resources management
*
* The goal of this source code is to properly manage IPC resources
206,3 → 212,7
ASSERT(phone->state == IPC_PHONE_CONNECTING);
ipc_phone_connect(phone, box);
}
 
/** @}
*/
 
/kernel/trunk/generic/src/ipc/sysipc.c
26,6 → 26,12
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @addtogroup genericipc
* @{
*/
/** @file
*/
 
#include <arch.h>
#include <proc/task.h>
#include <proc/thread.h>
585,3 → 591,7
 
return 0;
}
 
/** @}
*/
 
/kernel/trunk/generic/src/ipc/ipc.c
26,6 → 26,14
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @addtogroup genericipc IPC
* @ingroup kernel
* @brief Interprocess communication protocol
* @{
*/
/** @file
*/
 
/* Lock ordering
*
* First the answerbox, then the phone
523,3 → 531,7
spinlock_unlock(&task->answerbox.lock);
spinlock_unlock(&task->lock);
}
 
/** @}
*/
 
/kernel/trunk/generic/src/ipc/irq.c
26,6 → 26,12
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @addtogroup genericipc
* @{
*/
/** @file
*/
 
/** IRQ notification framework
*
* This framework allows applications to register to receive a notification
327,3 → 333,7
interrupts_restore(ipl);
}
}
 
/** @}
*/