Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Back to automake-1.8 now that my machine works again
[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   {"ppc",    1.   {1,2,4,4,8,   4,4,   4,8}}
21 };
22
23 const char *gras_datadesc_arch_name(int code) {
24    if (code < 0 || code > gras_arch_count)
25      return "[arch code out of bound]";
26    return gras_arches[code].name;
27 }
28
29 /**
30  * gras_dd_convert_elm:
31  *
32  * Convert the element described by @type comming from architecture @r_arch.
33  * The data to be converted is stored in @src, and is to be stored in @dst.
34  * Both pointers may be the same location if no resizing is needed.
35  */
36 gras_error_t
37 gras_dd_convert_elm(gras_datadesc_type_t *type,
38                     int r_arch, 
39                     void *src, void *dst) {
40
41   if (r_arch != GRAS_THISARCH) 
42     RAISE_UNIMPLEMENTED;
43
44   return no_error;
45 }
46
47 /**
48  * gras_arch_selfid:
49  *
50  * returns the ID of the architecture the process is running on
51  */
52 int
53 gras_arch_selfid(void) {
54   return GRAS_THISARCH;
55 }