From: mquinson Date: Thu, 23 Nov 2006 10:40:09 +0000 (+0000) Subject: Documentation improvement X-Git-Tag: v3.3~2418 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/00ef5a480fe8d2bf9aca18bc01774d917d30dca1?hp=0e72d691690e6a528d5c99aa413dee828b852332 Documentation improvement git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@2941 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/src/amok/PeerManagement/peermanagement.c b/src/amok/PeerManagement/peermanagement.c index 8dc2e7a427..5095a7d03a 100644 --- a/src/amok/PeerManagement/peermanagement.c +++ b/src/amok/PeerManagement/peermanagement.c @@ -110,19 +110,19 @@ void amok_pm_mainloop(double timeOut) { } } -/** \brief kill a buddy identified by its peername and port */ +/** \brief kill a buddy identified by its peername and port. Note that it is not removed from any group it may belong to. */ void amok_pm_kill_hp(char *name,int port) { gras_socket_t sock=gras_socket_client(name,port); amok_pm_kill(sock); gras_socket_close(sock); } -/** \brief kill a buddy to which we have a socket already */ +/** \brief kill a buddy to which we have a socket already. Note that it is not removed from any group it may belong to. */ void amok_pm_kill(gras_socket_t buddy) { gras_msg_send(buddy,gras_msgtype_by_name("amok_pm_kill"),NULL); } -/** \brief kill syncronously a buddy (do not return before its death) */ +/** \brief kill syncronously a buddy (do not return before its death). Note that it is not removed from any group it may belong to. */ void amok_pm_kill_sync(gras_socket_t buddy) { gras_msg_rpccall(buddy,30,gras_msgtype_by_name("amok_pm_killrpc"),NULL,NULL); }