Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Transport becomes a real module
[simgrid.git] / src / gras / Transport / transport.c
1 /* $Id$ */
2
3 /* bloc_transport - send/receive a bunch of bytes                           */
4
5 /* Authors: Martin Quinson                                                  */
6 /* Copyright (C) 2004 Martin Quinson.                                       */
7
8 /* This program is free software; you can redistribute it and/or modify it
9    under the terms of the license (GNU LGPL) which comes with this package. */
10
11 #include "gras_private.h"
12 #include "transport.h"
13
14 GRAS_LOG_NEW_DEFAULT_SUBCATEGORY(transport,GRAS);
15
16
17 gras_error_t 
18 gras_trp_init(void){
19   RAISE_UNIMPLEMENTED;
20 }
21
22 void
23 gras_trp_exit(void){
24
25   ERROR1("%s not implemented",__FUNCTION__);
26   abort();
27 }
28
29 gras_error_t
30 gras_trp_plugin_get_by_name(const char *name,
31                             gras_trp_plugin_t **dst){
32
33   RAISE_UNIMPLEMENTED;
34 }