f1369440289ed5e2cb138b733924d3fa857e4f61
[libfirm] / ir / debug / firm_ycomp.h
1 /*
2  * Project:     libFIRM
3  * File name:   ir/debug/firm_ycomp.h
4  * Purpose:     Connect firm to ycomp
5  * Author:      Christian Wuerdig
6  * Modified by:
7  * Created:     16.11.2006
8  * CVS-ID:      $Id$
9  * Copyright:   (c) 2001-2006 Universität Karlsruhe
10  * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
11  */
12 #ifndef _FIRM_YCOMP_H_
13 #define _FIRM_YCOMP_H_
14
15 #include "firmnet.h"
16
17 /**
18  * Establish connection to yComp and register debugger hooks.
19  * @param host Hostname where yComp is running
20  * @param port Port on which yComp is listening
21  */
22 void firm_init_ycomp_debugger(const char *host, uint16_t port);
23
24 /**
25  * Close connection to yComp and unregister debugger hooks.
26  */
27 void firm_finish_ycomp_debugger(void);
28
29 #endif /* _FIRM_YCOMP_H_ */