diff options
Diffstat (limited to 'src/client.c')
-rw-r--r-- | src/client.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/client.c b/src/client.c index c50f9b8..0d6488a 100644 --- a/src/client.c +++ b/src/client.c @@ -27,11 +27,6 @@ static struct client_list clients; -/************************************************* - *** FUNCTIONS TO ACCESS CLIENT REPRESENTATION *** - *************************************************/ - -/*** FIND THE CLIENT STRUCTURE FOR A GIVEN CLIENT ID ***/ struct client * client_lookup(int clientid) { @@ -43,7 +38,6 @@ client_lookup(int clientid) return NULL; } -/*** INIT CLIENT STRUCTURE AND ADD CLIENT TO CLIENT LIST ***/ struct client * client_add(int domid, unsigned short max_views, unsigned short max_buffers) { @@ -66,8 +60,6 @@ client_add(int domid, unsigned short max_views, unsigned short max_buffers) return c; } - -/*** REMOVE CLIENT FROM NITPICKER SESSION ***/ void client_remove(struct client *c) { @@ -83,8 +75,6 @@ client_remove(struct client *c) free(c); } - -/*** REMOVE ALL CLIENTS FROM NITPICKER SESSION ***/ void client_remove_all(void) { |