summaryrefslogtreecommitdiff
path: root/src/ivy.c
diff options
context:
space:
mode:
authorbustico2008-02-08 09:33:07 +0000
committerbustico2008-02-08 09:33:07 +0000
commit4013e1acba325a4f7ef4192c13ec39f64b4d098a (patch)
tree0eadf35fb16550a75f1e7cea6c4e4d08d2c3f22c /src/ivy.c
parente2f721ae39bd48abacb80c414b64e934abdbe610 (diff)
downloadivy-c-4013e1acba325a4f7ef4192c13ec39f64b4d098a.zip
ivy-c-4013e1acba325a4f7ef4192c13ec39f64b4d098a.tar.gz
ivy-c-4013e1acba325a4f7ef4192c13ec39f64b4d098a.tar.bz2
ivy-c-4013e1acba325a4f7ef4192c13ec39f64b4d098a.tar.xz
fix makefile for non omp target
Diffstat (limited to 'src/ivy.c')
-rw-r--r--src/ivy.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/ivy.c b/src/ivy.c
index 0d146ee..df180b2 100644
--- a/src/ivy.c
+++ b/src/ivy.c
@@ -21,6 +21,8 @@
° mesures de perfo
° compil rejeu en monothread et omp et tests
° compil sur mac et windows pour portabilité
+ ° faire un repertoire exemple avec tous les executables
+ ° faire un configure
*/
#ifdef OPENMP
@@ -695,7 +697,8 @@ static void BroadcastReceive( Client client, void *data, char *line )
#endif /*DEBUG */
/* connect to the service and send the regexp */
- app = SocketConnectAddr(SocketGetRemoteAddr(client), serviceport, 0, Receive, ClientDelete );
+ app = SocketConnectAddr(SocketGetRemoteAddr(client), serviceport, 0, Receive,
+ ClientDelete );
if (app) {
IvyClientPtr clnt;
clnt = SendService( app, appname );