X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/954f038683247f1e21f94c45ad2f449ffb83b1e5..ed5bc1532577eb73f0ae8ebe686961097ae30fdf:/src/include/simix/simix.h diff --git a/src/include/simix/simix.h b/src/include/simix/simix.h index 97eb4d0834..ab928468e8 100644 --- a/src/include/simix/simix.h +++ b/src/include/simix/simix.h @@ -1,7 +1,5 @@ -/* $Id$ */ - -/* Copyright (c) 2007 Arnaud Legrand, Bruno Donnassolo. - All rights reserved. */ +/* Copyright (c) 2007, 2008, 2009, 2010. The SimGrid Team. + * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -29,6 +27,12 @@ XBT_PUBLIC(xbt_main_func_t) SIMIX_get_registered_function(const char *name); XBT_PUBLIC(void) SIMIX_launch_application(const char *file); +/* + * Deployment (Bypass the parser) + */ +XBT_PUBLIC(void) SIMIX_process_set_function(const char* process_host,const char *process_function,xbt_dynar_t arguments,double process_start_time,double process_kill_time); + + XBT_PUBLIC(double) SIMIX_get_clock(void); XBT_PUBLIC(void) SIMIX_init(void); XBT_PUBLIC(double) SIMIX_solve(xbt_fifo_t actions_done, @@ -165,6 +169,8 @@ XBT_PUBLIC(smx_action_t) SIMIX_action_sleep(smx_host_t host, double amount); XBT_PUBLIC(void) SIMIX_action_cancel(smx_action_t action); XBT_PUBLIC(void) SIMIX_action_set_priority(smx_action_t action, double priority); +XBT_PUBLIC(void) SIMIX_action_resume(smx_action_t action); +XBT_PUBLIC(void) SIMIX_action_suspend(smx_action_t action); XBT_PUBLIC(int) SIMIX_action_destroy(smx_action_t action); XBT_PUBLIC(void) SIMIX_action_use(smx_action_t action); XBT_PUBLIC(void) SIMIX_action_release(smx_action_t action); @@ -212,6 +218,11 @@ XBT_PUBLIC(void) SIMIX_communication_destroy(smx_comm_t comm); XBT_PUBLIC(double) SIMIX_communication_get_remains(smx_comm_t comm); XBT_PUBLIC(void *) SIMIX_communication_get_data(smx_comm_t comm); +XBT_PUBLIC(void *) SIMIX_communication_get_src_buf(smx_comm_t comm); +XBT_PUBLIC(void *) SIMIX_communication_get_dst_buf(smx_comm_t comm); +XBT_PUBLIC(size_t) SIMIX_communication_get_src_buf_size(smx_comm_t comm); +XBT_PUBLIC(size_t) SIMIX_communication_get_dst_buf_size(smx_comm_t comm); + /*****Networking*****/ XBT_PUBLIC(void) SIMIX_network_set_copy_data_callback(void (*callback)(smx_comm_t, size_t)); XBT_PUBLIC(void) SIMIX_network_copy_pointer_callback(smx_comm_t comm, size_t buff_size);