~ubuntu-branches/ubuntu/quantal/simgrid/quantal

« back to all changes in this revision

Viewing changes to examples/gras/mmrpc/_mmrpc_server.c

  • Committer: Package Import Robot
  • Author(s): Lucas Nussbaum, Martin Quinson, Lucas Nussbaum
  • Date: 2012-06-09 16:24:44 UTC
  • mfrom: (10.1.4 sid)
  • Revision ID: package-import@ubuntu.com-20120609162444-xook34f3d6qy5ixj
Tags: 3.7.1-1
[ Martin Quinson ]
* debian/copyright: update FSF address (thanks lintian for noticing)

[ Lucas Nussbaum ]
* New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
/***********
3
 
 * DO NOT EDIT! THIS FILE HAS BEEN AUTOMATICALLY GENERATED FROM /home/mquinson/Code/simgrid/examples/gras/mmrpc/mmrpc.xml BY gras_stub_generator
4
 
 ***********/
5
 
 
6
 
/* specific to Borland Compiler */
7
 
#ifdef __BORLANDC__
8
 
#pragma hdrstop
9
 
#endif
10
 
 
11
 
#include <stdio.h>
12
 
#include <signal.h>
13
 
#include <gras.h>
14
 
 
15
 
XBT_PUBLIC_DATA(const char *) _gras_procname;
16
 
/* user code */
17
 
int server(int argc, char *argv[]);
18
 
 
19
 
/* specific to Borland Compiler */
20
 
#ifdef __BORLANDC__
21
 
#pragma argsused
22
 
#endif
23
 
 
24
 
int main(int argc, char *argv[]){
25
 
  int errcode;
26
 
 
27
 
  _gras_procname = "server";
28
 
  errcode=server(argc,argv);
29
 
 
30
 
  return errcode;
31
 
}
32
 
 
33
 
/***********
34
 
 * DO NOT EDIT! THIS FILE HAS BEEN AUTOMATICALLY GENERATED FROM /home/mquinson/Code/simgrid/examples/gras/mmrpc/mmrpc.xml BY gras_stub_generator
35
 
 ***********/
36