Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Define missing function.
[simgrid.git] / src / simix / smx_new_api_private.h
1 /* Copyright (c) 2007, 2008, 2009, 2010. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 /* ****************************************************************************************** */
8 /* TUTORIAL: New API                                                                        */
9 /* ****************************************************************************************** */
10 #ifndef _SIMIX_NEW_API_PRIVATE_H
11 #define _SIMIX_NEW_API_PRIVATE_H
12
13 #include "simgrid/simix.h"
14 #include "smx_smurf_private.h"
15
16 void SIMIX_pre_new_api_fct(smx_simcall_t simcall);
17 smx_action_t SIMIX_new_api_fct(smx_process_t process, const char* param1, double param2);
18
19 void SIMIX_post_new_api(smx_action_t action);
20 void SIMIX_new_api_destroy(smx_action_t action);
21 void SIMIX_new_api_finish(smx_action_t action);
22
23 #endif