Subversion Repositories HelenOS-historic

Rev

Rev 1595 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1595 Rev 1702
Line 24... Line 24...
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
-
 
29
 /** @addtogroup genericipc
-
 
30
 * @{
-
 
31
 */
-
 
32
/** @file
-
 
33
 */
-
 
34
 
29
#ifndef __SYSIPC_H__
35
#ifndef __SYSIPC_H__
30
#define __SYSIPC_H__
36
#define __SYSIPC_H__
31
 
37
 
32
#include <ipc/ipc.h>
38
#include <ipc/ipc.h>
33
#include <ipc/irq.h>
39
#include <ipc/irq.h>
Line 49... Line 55...
49
__native sys_ipc_hangup(int phoneid);
55
__native sys_ipc_hangup(int phoneid);
50
__native sys_ipc_register_irq(int irq, irq_code_t *ucode);
56
__native sys_ipc_register_irq(int irq, irq_code_t *ucode);
51
__native sys_ipc_unregister_irq(int irq);
57
__native sys_ipc_unregister_irq(int irq);
52
 
58
 
53
#endif
59
#endif
-
 
60
 
-
 
61
 /** @}
-
 
62
 */
-
 
63