Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
New (debugging) function: gras_datadesc_arch_name
[simgrid.git] / src / gras / DataDesc / ddt_convert.c
1 /* $Id$ */
2
3 /* ddt_remote - Stuff needed to get datadescs about remote hosts            */
4
5 /* Authors: Olivier Aumage, Martin Quinson                                  */
6 /* Copyright (C) 2003, 2004 the GRAS posse.                                 */
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 "DataDesc/datadesc_private.h"
12
13
14 /***
15  *** Table of all known architectures. 
16  ***/
17
18 const gras_arch_desc_t gras_arches[gras_arch_count] = {
19   {"i386",   0,   {1,2,4,4,8,   4,4,   4,8}}
20 };
21
22 const char *gras_datadesc_arch_name(int code) {
23    if (code < 0 || code > gras_arch_count)
24      return "[arch code out of bound]";
25    return gras_arches[code].name;
26 }
27
28 /**
29  * gras_dd_convert_elm:
30  *
31  * Convert the element described by @type comming from architecture @r_arch.
32  * The data to be converted is stored in @src, and is to be stored in @dst.
33  * Both pointers may be the same location if no resizing is needed.
34  */
35 gras_error_t
36 gras_dd_convert_elm(gras_datadesc_type_t *type,
37                     int r_arch, 
38                     void *src, void *dst) {
39
40   if (r_arch != GRAS_THISARCH) 
41     RAISE_UNIMPLEMENTED;
42
43   return no_error;
44 }
45
46 /**
47  * gras_arch_selfid:
48  *
49  * returns the ID of the architecture the process is running on
50  */
51 int
52 gras_arch_selfid(void) {
53   return GRAS_THISARCH;
54 }