Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
first try at killing GRAS -- does not compile yet
[simgrid.git] / examples / gras / ping / ping_common.c
diff --git a/examples/gras/ping/ping_common.c b/examples/gras/ping/ping_common.c
deleted file mode 100644 (file)
index e9b4f12..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-/* ping - ping/pong demo of GRAS features                                   */
-
-/* Copyright (c) 2003, 2004, 2005 Martin Quinson. 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. */
-
-#include "ping.h"
-XBT_LOG_NEW_DEFAULT_CATEGORY(Ping, "Messages specific to this example");
-
-/* register messages which may be sent (common to client and server) */
-void ping_register_messages(void)
-{
-  gras_msgtype_declare("ping", gras_datadesc_by_name("int"));
-  gras_msgtype_declare("pong", gras_datadesc_by_name("int"));
-  INFO0("Messages registered");
-}