Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Indent include and src using this command:
[simgrid.git] / src / gras / Transport / sg_transport.c
index 1084617..6079f08 100644 (file)
@@ -1,8 +1,7 @@
-/* $Id$ */
-
 /* sg_transport - SG specific functions for transport                       */
 
-/* Copyright (c) 2004 Martin Quinson. All rights reserved.                  */
+/* Copyright (c) 2004, 2005, 2006, 2007, 2009, 2010. The SimGrid Team.
+ * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
 
 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(gras_trp);
 
-/* check transport_private.h for an explanation of this variable; this just need to be defined to NULL in SG */
+/* check transport_private.h for an explanation of this variable;
+ * this just need to be defined to NULL in SG */
 gras_socket_t _gras_lastly_selected_socket = NULL;
 
+#ifdef KILLME
 /**    
  * gras_trp_select:
  *
@@ -31,7 +32,7 @@ gras_socket_t gras_trp_select(double timeout)
 {
   gras_socket_t res;
   gras_trp_procdata_t pd =
-    (gras_trp_procdata_t) gras_libdata_by_id(gras_trp_libdata_id);
+      (gras_trp_procdata_t) gras_libdata_by_id(gras_trp_libdata_id);
   gras_trp_sg_sock_data_t *sockdata;
   gras_trp_plugin_t trp;
   gras_socket_t active_socket = NULL;
@@ -101,8 +102,8 @@ gras_socket_t gras_trp_select(double timeout)
 
   res->peer_port = ((gras_trp_procdata_t)
                     gras_libdata_by_name_from_remote("gras_trp",
-                                                     sockdata->
-                                                     to_process))->myport;
+                                                     sockdata->to_process))->
+      myport;
   sockdata->to_socket = active_socket;
   /*update the peer to_socket  variable */
   active_socket_data->to_socket = res;
@@ -110,7 +111,7 @@ gras_socket_t gras_trp_select(double timeout)
   sockdata->mutex = SIMIX_mutex_init();
 
   sockdata->to_host =
-    SIMIX_process_get_host(active_socket_data->from_process);
+      SIMIX_process_get_host(active_socket_data->from_process);
 
   res->data = sockdata;
   res->peer_name = strdup(SIMIX_host_get_name(sockdata->to_host));
@@ -124,7 +125,7 @@ gras_socket_t gras_trp_select(double timeout)
 
   return res;
 }
-
+#endif
 
 /* dummy implementations of the functions used in RL mode */