From: Erik van der Kouwe Date: Tue, 13 Apr 2010 21:48:24 +0000 (-0500) Subject: This patch changes the comment format (// to /* ... */) in some header X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?p=palacios.git;a=commitdiff_plain;h=3b67b03716ad6bfdda5c95c8a0ef9004da1b3913 This patch changes the comment format (// to /* ... */) in some header files, allowing them to be compiled with older versions of C. --- diff --git a/palacios/include/palacios/vmm_host_events.h b/palacios/include/palacios/vmm_host_events.h index e115005..0635885 100644 --- a/palacios/include/palacios/vmm_host_events.h +++ b/palacios/include/palacios/vmm_host_events.h @@ -76,7 +76,7 @@ int v3_hook_host_event(struct guest_info * info, union v3_host_event_handler cb, void * private_data); -#endif // ! __V3VEE__ +#endif /* ! __V3VEE__ */ diff --git a/palacios/include/palacios/vmm_socket.h b/palacios/include/palacios/vmm_socket.h index 1e1d5f3..2108d57 100644 --- a/palacios/include/palacios/vmm_socket.h +++ b/palacios/include/palacios/vmm_socket.h @@ -204,41 +204,41 @@ struct v3_timeval { #define V3_SOCK_SETSIZE 1000 typedef struct v3_sock_set { - // This format needs to match the standard posix FD_SET format, so it can be cast + /* This format needs to match the standard posix FD_SET format, so it can be cast */ unsigned char fd_bits [(V3_SOCK_SETSIZE + 7) / 8]; } v3_sock_set; struct v3_socket_hooks { - // Socket creation routines + /* Socket creation routines */ int (*tcp_socket)(const int bufsize, const int nodelay, const int nonblocking); int (*udp_socket)(const int bufsize, const int nonblocking); - // Socket Destruction + /* Socket Destruction */ void (*close)(int sock); - // Network Server Calls + /* Network Server Calls */ int (*bind_socket)(const int sock, const int port); int (*listen)(const int sock, int backlog); int (*accept)(const int sock, unsigned int * remote_ip, unsigned int * port); - // This going to suck + /* This going to suck */ int (*select)(struct v3_sock_set * rset, \ struct v3_sock_set * wset, \ struct v3_sock_set * eset, \ struct v3_timeval tv); - // Connect calls + /* Connect calls */ int (*connect_to_ip)(const int sock, const int hostip, const int port); int (*connect_to_host)(const int sock, const char * hostname, const int port); - // TCP Data Transfer + /* TCP Data Transfer */ int (*send)(const int sock, const char * buf, const int len); int (*recv)(const int sock, char * buf, const int len); - // UDP Data Transfer + /* UDP Data Transfer */ int (*sendto_host)(const int sock, const char * hostname, const int port, const char * buf, const int len); int (*sendto_ip)(const int sock, const int ip_addr, const int port,