Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Erased bad commentary.
[simgrid.git] / ChangeLog
1 SimGrid (3.3-cvs) unstable; urgency=low
2
3  Introduce the SIMIX module: factorize code between MSG and GRAS.
4    [Bruno Donassolo]
5   Until now, GRAS were using MSG as an interface to SURF. It was
6    quite difficult because both interface have several differences
7    (MSG channels vs GRAS sockets were the most notable point).
8    
9   This also opens the gate to SMPI (which should occur soon) and speed
10    up simulations by to 40% (even if it were not the main goal).
11   
12  ************************************** 
13  *DO NOT MIX 3.2 RESULTS WITH 3.3 ONES* Simix may changes simulations!
14  **************************************
15    The point is that events occuring at the exact same timestamp are
16     not scheduled in the same order with the old and new version. This
17     may be enough to completely change the execution of simulations in
18     some cases. Sorry for the inconvenience.
19
20  Overall changes:
21   * Make the backtrace of exceptions more human readable [Mt]
22
23  -- 
24
25 SimGrid (3.2) unstable; urgency=low
26
27   OVERALL CHANGES:
28    * Port to windows.
29      We still experience issues on this platform, but we belive that at
30      least MSG is usable.
31
32   GRAS API BREAKAGE (for simplification purpose, sorry):
33    * the gras_msgtype_by_name is not used anymore. Instead of 
34        gras_msg_send(toserver, gras_msgtype_by_name("request"), &request);
35      you can write (and must)
36        gras_msg_send(toserver, "request", &request);
37    - If you still want to pass a gras_msgtype_t to the function (to cache
38      the type and avoid the lookup time), use the gras_msg_send_() variant.
39    - Impacted functions:
40      gras_cb_register, gras_cb_unregister, gras_msg_send, gras_msg_wait,
41      gras_msg_rpccall, gras_msg_rpc_async_call, gras_msg_wait_ext
42    * The callbacks are now expected to return 0 when everything went well
43      (just like the main() function)
44
45   GRAS new features and improvements:
46   * New module mecanism where user code can use per process globals [Mt]
47     This is similar to gras_userdata_*() functions, but for libraries. It
48       factorize some code developped over and over in the examples and AMOK.
49     It has still to be documented and used (only amok/peermanagement is
50       converted for now).
51   * Fix a vicious bug in the TCP buffering mecanism which leaded to message
52     loss when they were small enough to fit into the buffer and sent quickly
53     enough so that they can all get received in one shoot.   
54   * gras_datadesc_by_name and gras_msgtype_by_name: now raise an exception
55     if not found. Use the *_or_null() variant for the old semantic.
56   * In gras_msg_handle, do not discard messages without callback.
57     They are probably messages to be explicitly awaited later (ie, proofs of
58     mis-synchronization in userland since they are sent before being awaited)
59     No big deal usually.
60   * gras_socket_meas_send/recv: semantic changed!
61     The numerical arguments used to be (1) the total amount of data to send
62     and (2) msg_size. This was changed to (1) msg_size and (2) amount of
63     messages. This was need for the fool willing to send more than MAXINT
64     bytes on quite fat pipes.       
65         
66   AMOK:
67   * Do really rename the hostmanagement module to peermanagement. [Mt]
68     Ie, rename functions from amok_hm_* to amok_pm_*. This breaks the API,
69     but this is rather new and this was documented in the module
70     documentation (poor excuses, I admit)
71   * Bandwidth measurement semantic changed! This follows the changes to
72     gras_socket_meas_send/recv explained above.
73     
74   SIMDAG:
75   * A sequential mode has been added to the workstations. When a workstation
76     is in sequential mode, it can execute only one task, and the other tasks
77     are waiting in a FIFO. [Christophe Thiery]
78
79   SURF:
80   * The KCCFLN05 workstation model now handles parallel tasks. It is the
81     model for SIMDAG. [Christophe Thiery]
82   * Bug fix in the maxmin solver: Some values were close to 0 instead of
83     equal to 0, which caused some bad behaviors in
84     saturated_constraint_set_update. I now use a threshold mechanism like in
85     surf. [AL]
86
87   XBT:
88   * When running manually src/testall, you select specific units [Mt]
89     testall is the result of our cunit mecanism, and should replace all
90     the scripty thingy around since bash don't run easily on billware.
91
92   * A mallocator system has been added. [Christophe Thiery]
93     Mallocators allow you to recycle your unused objects instead of freeing them
94     and allocating new ones.
95
96   Documentation update:
97   * FAQ reworking + New FAQs:
98     - "Valgrind spits tons of errors!" [Mt]
99     - "How to repport bugs" [Mt]
100     - "Cross-compiling a Windows DLL of SimGrid from Linux" [Mt]
101     - "What is the difference between MSG, SimDag, and GRAS?" [Mt]
102     - Communication time measurement within MSG [AL]
103     - I experience weird communication times when I change the latency [AL]
104   * GRAS tutorial [Mt]
105     It contains:
106      - an introduction to the framework and to the used communication model
107      - an initiatic tour introducing the most proheminent features:
108        o Part 1: Bases
109          . Lesson 0: Installing GRAS
110          . Lesson 1: Setting up your own project
111        o Part 2: Message passing
112          . Lesson 2: Exchanging simple messages
113          . Lesson 3: Passing arguments to the processes (in SG)
114          . Lesson 4: Attaching callbacks to messages
115          . Lesson 5: Using globals in processes
116          . Lesson 6: Logging informations properly
117          . Lesson 7: Using internal timers
118          . Lesson 8: Handling errors through exceptions
119          . Lesson 9: Exchanging simple data
120          . Lesson 10: Remote Procedure Calling (RPC)
121          . Lesson 11: Explicitely waiting for messages
122          . Recapping of message passing features in GRAS
123      - A HOWTO section containing:
124        o HOWTO design a GRAS application
125        More are due, of course. They will come latter. In the meanwhile, you can 
126        check the examples which are still here.
127
128  -- Da SimGrid team <simgrid-devel@lists.gforge.inria.fr> Fri Mar 16 21:11:46 CET 2007
129
130 SimGrid (3.1) unstable; urgency=low
131
132   General:
133   * Port to gcc 4.x   
134     There was a stack corruption somewhere, visible only when optimizing
135     with these versions. [Vince]
136
137   SIMDAG:
138   * This is a NEW module! SimDAG (SD for short) is a revival of the old SG
139     module that enabled to play with Directed Acyclic Graphs. It is built
140     directly on top of SURF and provides an API rather close to the old
141     SG. Some old codes using SG are currently under rewrite to check that
142     all needful functions are provided. [Christophe Thiery]
143         
144   SURF:
145   * Complete rewrite of the KCCFLN05 workstation model. It is now an
146     extension of the classical CLM03 model that gracefully handles
147     failures. This is now the default model for MSG and GRAS. It doesn't
148     handle parallel tasks yet though. [AL]
149   * Bug fix: Weights were not correctly set in the network part. 
150     WARNING: This may have resulted in incorrect results with simulations
151     where there are more than one flow on a given link. [AL]
152
153   SURF, MSG, GRAS:
154   * After a (long ?) discussion on simgrid-devel, we have decided that the
155     convention we had on units was stupid. That is why it has been decided
156     to move from (MBits, MFlops, seconds) to (Bits, Flops, seconds). 
157     WARNING : This means that all previous platform files will not work as
158     such with this version! A warning is issued to ask users to update
159     their files. [AL]
160     A conversion script can be found in the contrib module of the CVS, under
161     the name contrib/platform_generation/surfxml_update.pl [MQ]
162
163   MSG,GRAS:
164   * Bug fix: Processes were started in reverse order, wrt deployment file.
165     WARNING: if your code relies on this bug, please fix it.    [AL]
166   * Bug fix: Add a test in MSG_task_execute to stop whenever a task is
167     being executed on two different locations.                  [AL]
168   * Bug fix: Failures are now better supported thanks to Derrick's tests
169     (there was many failure situations I hadn't thought of and that weren't
170     correctly handled). [AL]
171   * New function: MSG_host_is_avail indicates you whether a given m_host_t
172     is up or down. [AL]
173
174   GRAS:
175   * New! a real RPC mecanism, as it ought to be since too long. [MQ]
176       Exception occurring on server-side are propagated back to client (!).
177       
178     API CHANGE: the callback changed their prototype. Change:
179         int my_handler(gras_socket_t expeditor, void *payload_data) {
180       to:
181         int my_handler(gras_msg_cb_ctx_t ctx  , void *payload_data) {
182           gras_socket_t expeditor=gras_msg_cb_ctx_from(ctx);
183       and you're set.
184   * New! function: gras_msg_handleall to deal with all messages arriving
185       within a given period.
186   * New! function: gras_socket_server_range to get a server socket in a
187     range of port numbers (ease to avoid port number conflicts) [MQ]
188   * New! gras processes display their backtrace when they get a SIGUSR1
189       or when Ctrl-C is pressed. Use Ctrl-C Ctrl-C to exit.
190       Sweet to debug RL processes [MQ]
191
192   AMOK:
193   * Bandwidth module: 
194     - Do not force experiment sizes to be expressed in kb, or it becomes
195       impossible to measure the latency this way (needs one byte-long tests)
196     WARNING: this changes the amok_bw_* function semantic. [MQ]
197     - Implements the link saturation stuff. [MQ]
198   * Peer management module: 
199     New! module factorizing code that we wrote over and over [MQ].
200       
201   XBT:
202   * New module: cunit (my jUnit implementation in ansi C) [MQ]
203     - Test units are placed directly into the library code, they get extracted
204       automatically and placed into the src/testall binary.
205     - Convert most of the XBT tests to this system.
206   * New functions: xbt_dynar_getfirst_as() and xbt_dynar_getlast_as() [MQ]
207   * XML parsing: rewrote parts of flexml to enable multiple xml parsers to
208     live in the same C code. This required to change a little bit the API
209     of surfxml parsing but shouldn't be an issue for end-users. [AL]
210   * New module: sparse graph structure with basic algorithms (this is work
211     in progress and the API is not considered to be frozen yet). [AL]
212   * Display more information on backtraces: source line & function names are
213     now displayed just like valgrind does (rely on addr2line tool) [MQ]
214   * New function: xbt_backtrace_display(). Sweet while debuging [MQ]
215   * Reworked a little bit some #include statements to load only required
216     headers. Some user code that relied on SimGrid to include stdlib or
217     stdio may need to include it by themselves. [AL]
218   * Fixed xbt/log.h. A missing SG_BEGIN_DECL prevented compilation with
219     g++. [AL]
220   * Renamed xbt_host_t into xbt_peer_t since it betterly describes what I
221     meant. This breaks the API of AMOK and of xbt/config. Sorry about this,
222     but I guess that almost nobody used those parts. [MQ]
223
224  -- Da SimGrid team <simgrid-devel@lists.gforge.inria.fr> Fri, 14 Jul 2006 01:32:27 +0200
225
226 SimGrid (3.0.1) unstable; urgency=low
227
228   XBT:
229   * Unfortunately, I had missed 5 misnamed functions:
230       xbt_fifo_item_t xbt_fifo_newitem(void);
231       void xbt_fifo_freeitem(xbt_fifo_item_t);
232       xbt_fifo_item_t xbt_fifo_getFirstItem(xbt_fifo_t l);
233       xbt_fifo_item_t xbt_fifo_getNextItem(xbt_fifo_item_t i);
234       xbt_fifo_item_t xbt_fifo_getPrevItem(xbt_fifo_item_t i);
235     They're now deprecated. Please use their new versions:
236       xbt_fifo_item_t xbt_fifo_new_item(void);
237       void xbt_fifo_free_item(xbt_fifo_item_t);
238       xbt_fifo_item_t xbt_fifo_get_first_item(xbt_fifo_t l);
239       xbt_fifo_item_t xbt_fifo_get_next_item(xbt_fifo_item_t i);
240       xbt_fifo_item_t xbt_fifo_get_prev_item(xbt_fifo_item_t i);
241     [AL]
242   * Bugfix: really disconnect fifo items which are remove_item()ed [AL]
243   * Documentation: xbt_log module unmercifully reworked [MQ]
244   * Bugfix: there was a problem with the ending of contexts with 
245     the pthread backend. It caused some weird deadlock or behavior
246     depending on the pthread implementation. [AL]
247   * Bugfix: get the exceptions raised in the simulator repport where
248     and why they come from when they are not catched in time [AL, MQ]
249
250   SURF:
251   * Bugfix: Do repport the error when two non-connected hosts try to
252     exchange data (Thanks to Flavien for stumbling into this one) [AL]
253   
254   SURF:
255   * Add additionnal checkings on communications. Assert that two
256     communicating hosts are connected by a set of links... [AL]
257         
258   MSG:
259   * Add additionnal checkings on channel values in communication [AL]
260   * New: MSG_task_get_source to see on which host a task was generated [HC]
261   * New: int MSG_task_probe_from_host(int channel, m_host_t host): returns
262     the number of tasks waiting to be received on channel and sent
263     by host. [AL]
264   * New: MSG_error_t MSG_task_get_from_host(m_task_t * task, int channel, m_host_t host); 
265     waits for the first task coming from a given host.. [AL]
266         
267   GRAS new functionnalities: [MQ]
268   * Enhance the parsing macro to allow the size of multidimentional objects
269     to be given thru annotations.
270   * New example (and documentation): Matrix Multiplication a la RPC 
271     (as when I was young!) and fix a bunch of bugs found on the way.
272
273   GRAS performance improvements: [MQ]
274   [DataDesc]
275   * Reduce the amount of cbps creation/destruction by making it static to 
276     datadesc_send/recv() and using a (newly created) cbps_reset (based on 
277     dynar_reset ())
278   [Virtu]
279   * Change libdata to a set so that we can search for stuff by ID (and thus 
280     reduce the insane amount of dict lookups)     
281   
282   [Transport]
283   * Actually implement gras_datadesc_copy() so that we don't have to mimick
284     RL communication on top of SG since it's so uneffective. 
285     It may also be used for inter-thread communication in RL, one day. 
286   * Use gras_datadesc_copy() to exchange messages on top of SG 
287     Allows to:
288     - improve message exchange performance on top of SG
289     - deprecate transport_plugin_sg.c:gras_trp_sg_chunk_send() & recv()
290   * Don't exchange on the network the size of the used part of buffer,
291     instead, specify the possible buffer size to read(). 
292     Advantages:
293      - reduces the amount of read/write calls (one pair per exchange)
294      - reduces the amount of exchanged data (the size)
295      - allows to retrieve all arrived data on receiver side, if we don't need
296        it right now (subsequent read will peek the buffer)
297      - allows the receiver to proceed with the begining of the stream before
298        everything is arrived
299      - make it possible to build an iov transport (using readv/writev)
300     Extra difficulty: 
301      - take care of the data with non-stable storage (like stacked data),
302        and bufferize them.
303   * If possible, TCP send uses vector I/O (when writev() is here) 
304      - Don't use it for receive since we send data sizes and data on the
305        same stream, so we wouldn't be able to chain large amount of chunks
306        before having to flush the stuff to read the size.
307   * Rework the transport plugin mecanism to simplify it and reduce the
308     amount of pointer dereferencement when searching for the right function 
309     to use. 
310
311   * I guess that now, we do almost as few system calls as possible while
312     doing as few data copy as possible.
313
314     To improve it further, we could try to send all the sizes first and then
315     all the data (to use iov on receiving size), but it's only a partial
316     solution: when you have 2 dimensional data, the sizes of the second
317     dimension is data of the first dimension, so you need 3 streams.
318
319     I'm not sure the potential performance gains justify the coding burden.
320
321  -- Da SimGrid team <simgrid-devel@lists.gforge.inria.fr>  Fri, 21 Oct 2005 14:42:20 +0200
322
323 SimGrid (3.00) stable; urgency=low
324   
325  SURF:
326   * New! Give the possibility to hijack the surf parser and thus bypass 
327     MSG_create_environment and MSG_launch_application. Have a look at
328     examples/msg/msg_test_surfxml_bypassed.c to see how it can be done.
329         
330  -- Arnaud Legrand <simgrid-devel@lists.gforge.inria.fr>  Sat, 20 Aug 2005 23:25:25 -0700
331
332 SimGrid (2.96) unstable; urgency=low
333
334   AKA SimGrid 3 rc 2.
335   
336   XBT:
337   * New! Exception handling with setjmp or such (code from OSSP ex) [MQ]
338     This deprecates the xbt_error_t mecanisms. 
339     It modifies (simplifies) all XBT and GRAS API.
340     MSG API keeps unchanged (exceptions raised by XBT are catched from 
341      within MSG and masked with existing error handling facilities)
342
343   SURF:
344   * New! Add a FATPIPE model. [AL]
345   * New! Add a parallel task model. [AL]
346   * New! Add automatically a loopback interface (in the default
347     network model) if none was precised.
348
349   MSG
350   * Bugfix: MSG_process_resume now works with the current running process. 
351     [AL]
352   * New! Add MSG_parallel_task_create and MSG_parallel_task_execute. [AL]
353   * Modification of MSG_task_get_compute_duration. Once a task has been
354     processed, the value returned by this function is now equal to 0. [AL]
355   * New! Add double MSG_task_get_remaining_computation(m_task_t task) and
356     MSG_error_t MSG_task_cancel(m_task_t task). Add a state
357     (MSG_TASK_CANCELLED) to MSG_error_t corresponding to the cancelation
358     of a m_task. For now, MSG_task_cancel only works with computation
359     tasks. [AL]
360   * New! Add double MSG_get_host_speed(m_host_t h) that returns the speed
361     of the processor (in Mflop/s) regardless of the current load on the
362     machine. [AL]
363   * API Change: use proper naming convention for MSG_getClock and 
364     MSG_process_isSuspended: MSG_get_clock and MSG_process_is_suspended.
365     [AL]
366   * New! Add void MSG_task_set_priority(m_task_t task, double priority). 
367     This function changes the priority of a computation task. This priority
368     doesn't affect the transfer rate. A priority of 2 will make a task 
369     receive two times more cpu power than the other ones. This function 
370     has been added to suit the needs of Nguyen The Loc and hasn't been that
371     much tested yet. So if it fails, please report it and send me your code. 
372     [AL]
373   * API Change: removed all functions and types that were marked "deprecated" 
374     since many months. Renamed MSG_global_init_args to MSG_global_init.
375
376  -- Da SimGrid team <simgrid-devel@lists.gforge.inria.fr>  Mon,  8 Aug 2005 17:58:47 -0700
377
378 SimGrid (2.95) unstable; urgency=low
379
380   XBT
381   * Steal some nice code to GNU pth to fix context detection and usage [AL]
382   * Cleanup in the xbt_config API; add configuration callbacks. [MQ]
383   * Cleanup in the initialization API: the unused "defaultlog" is dead. [MQ]
384
385   SURF
386   * Bugfix: Allow absolute paths for platform description files [MQ]
387   * Bugfix: do free the variables after use. Leads to drastic performance 
388     improvement [AL] 
389   * Implement max_duration (ie, timeouts) on resources [AL]
390
391   MSG
392   * Implement MSG_config to configure MSG at runtime. xbt_cfg test on a real
393     case ;) [MQ]
394   * Implement MSG_channel_select_from() to help GRAS now that SURF provide
395     the needed support (timeouts) [AL]
396
397   GRAS (new features)
398   * Implement measurement sockets. You can now get the bandwidth between two
399     hosts thanks to AMOK (see below). [MQ]
400   * gras_datadesc_dynar() builds a dynar type descriptor, allowing to send
401     dynar over the network (yeah) [MQ]
402   * Real (even if simplistic) implementation of gras_os_myname() on RL [MQ]
403   * simple/static token-ring example. [Alexandre Colucci and MQ]
404   * Use MSG_channel_select_from() and remove the *slow* hack we had to put
405     in place before [MQ]
406   
407   GRAS (bug fixes)
408   * Differentiate the types "char[22]" and "unsigned char[22]" in automatic
409     type parsing. "short" and "long" modifiers were also ignored; other
410     modifier (such as reference level) are still ignored. [MQ] 
411   * Embeed the buffer size within the buffer itself on SG. [MQ]
412     That way, send() are atomic and cannot get intermixed anymore (at least
413     the ones which are less than 100k; bigger messages still have the issue)
414   * Array size pushed by the field, not by the field type (or each
415     and every long int will push stuff to the cbps) [MQ]
416   * use select() to sleep since it allows to portably sleep less than one
417     second. [MQ]
418
419   GRAS (minor cleanups)
420   * <project>.Makefile.local (generated from gras_stub_generator) |MQ]:
421     - Do clean .o files
422     - Compile with -g
423   * Type Callbacks now receive the gras_datadesc_type_t they work on as argument.
424   * type category 'ignored' killed as it was never used and were difficult
425     to transmit.
426   * whether a type can cycle or not is now a flag, leaving room for more
427     flags (as "ignored", if we feel the need one day ;)
428   * Rename raw sockets to measurement sockets since "raw" has another
429     meaning in networking community. 
430   
431   AMOK 
432   * Advanced Metacomputing Overlay Kit introduction. It is based over GRAS
433     and offers features not belonging to GRAS but that most applications
434     need. One day, it may be a set of plugins loadable at runtime.
435   * New module: bandwidth 
436     bandwidth measurement between arbitrary nodes running this module. [MQ]
437
438  -- Da SimGrid team <simgrid-devel@lists.gforge.inria.fr>  Thu, 30 Jun 2005 16:29:20 -0700
439
440 SimGrid (2.94) unstable; urgency=low
441
442   The first beta release of SimGrid 3 !
443
444   >>>Arnaud<<<
445   (documentation)
446   * Update the main page and the FAQ. Adding references to gforge.
447
448   (gras)
449   * Add a gras_os_getpid function.
450
451   (msg)
452   * Add MSG_task_get_compute_duration() and MSG_task_get_data_size()
453   * Extend the logs so that they also print PID, hostname, date, ... if
454     available.
455   * Convert the MSG example to the use of xbt_logs instead of PRINT_MESSAGE,
456     and kill the old version which were in testsuite/
457   * Rewrite tools/MSG_visualization/colorize.pl for using with logs instead
458     of PRINT_MESSAGE
459
460   (xbt)
461   * Add xbt_os_time(). As the rest of xbt/portability, this is not public
462     for users. Instead, each programming environment (GRAS, MSG,...) use it
463     when needed to provide such a feature to users.
464     Don't shortcut the mecanism or you will also shortcut the virtualization
465     you need on the simulator.
466
467   >>>Martin<<<
468   (infrastructure)
469   * Cleanups in configury with regard to compile optimization/warning flags.
470     Also add -fno-loop-optimize to any powerpc since it's the optimization
471     killing gcc (< 3.4.0).
472   * Doxygen cleanups: move MSG examples, kill the second Doxygen phase
473     needed by MSG examples complications
474   * Borrow configury beautifications from PHP
475
476   (xbt)
477   * Bugfix: XBT_LOG_NEW_DEFAULT_CATEGORY now compiles without compiler
478     warning (thanks loris for stumbling into this one).
479   * Bugfix: stop loading private headers (gras_config.h) from the public
480     ones (xbt/swag.h).
481
482   (gras)
483   * Change SIMGRID_INSTALL_PATH to GRAS_ROOT in Makefiles generated for user.
484   * Rename gras_get_my_fqdn to gras_os_myname and implement it in the simulator
485     RL would imply a DNS resolver, which is *hard* to do in a portable way
486     (and therefore delayed).
487   * Implement a real timer mecanism and use it in timing macros. This allows
488     to avoid rounding errors and get a 0.000005 sec precision in timing
489     macros. While I was at it, various cleanups:
490      - allow to declare more than one timed section per file (fix a stupid bug)
491      - move some private declaration to the right place
492      - merge conditional execution and timing macros into emulation module
493      - document the module
494      - make sure the module cleanups its mess on gras_exit
495   * Documentation improvements:
496      - (new) how to compile applications using GRAS
497      - (new) emulation support (timing macros)
498
499  -- Da SimGrid team <simgrid-devel@lists.gforge.inria.fr>  Fri, 13 May 2005 10:49:31 +0200
500
501 SimGrid (2.93) unstable; urgency=low
502
503   Alpha 4 on the path to SimGrid 3 (aka the "neuf-trois" version)
504
505   [Arnaud]
506    - Use Paje properly where used. Still to be sanitized properly.
507    - Portability fix: Add an implementation of the contexts using pthread
508
509   [Martin]
510   (misc)
511    - Add xbt_procname(): returns the name of the current process.
512      Use it to show the current process's name in all logging.
513   (infrastructure)
514    - fix detection of older flex version and the reaction, since we do
515      depend on modern ones (we use lex_destroy)
516    - Better separation of SG and RL in the libs: remove all simulation code
517      from libgras. As a result, this lib is now only 200k when stripped.
518      Some of the xbt modules may also be duplicated (two sets and such) and
519      should be cleaned/killed before SG3.
520    - Insist on using xlC on AIX because of weird problems involving gcc there.
521    - Cleanup the make remote stuff. This is now done by scripts
522      tools/graspe-{master,slave} (GRAS Platform Expender). This is still
523      mainly for our private use, but we're working on changing them to user
524      tools, too.
525   (gras)
526    - Bugfix: flush the socket on close only if there is some *output*.
527    - Bugfix: flush idempotent when there's nothing to send (don't send size=0)
528   (msg)
529    - Add MSG_task_get_name. The task names are mainly for debugging purpose,
530      but anyway.
531
532  -- SimGrid team <simgrid2-users@listes.ens-lyon.fr>  Fri,  4 Mar 2005 14:32:37 -0800
533
534 SimGrid (2.92) unstable; urgency=low
535
536   Alpha 3 on the path to SimGrid 3
537   
538   [Arnaud]
539   (gras)
540    - New! First try of benchmarking macros.
541    - New! First try so that gras_stub_generator generate deployment and
542      remote compilation helpers.
543   (msg)
544    - Bugfix: Initialization fix in msg_test.
545
546   [Martin]
547   (surf)
548    - Bugfix: applied patch to lexer so that it doesn't need a huge heap.
549   (xbt)
550    - Bugfix: let dicts work with NULL content (_foreach didn't) and cleanups
551   (gras)
552    - API Change: gras_os_sleep to take the amount of seconds as a double.
553      Accepting an int was error prone since it was the only location where
554      seconds were coded as such. It leaded to damn rounding errors.
555    - Bugfix: Hard to belive that timers ever worked before this.
556
557  -- SimGrid team <simgrid2-users@listes.ens-lyon.fr>  Wed, 23 Feb 2005 22:09:21 +0100
558
559 SimGrid (2.91) unstable; urgency=low
560
561   Alpha 2 on the path to SimGrid 3
562   
563   [Arnaud]
564   (surf)
565    - Bug fix in the lmm_solver.
566   (msg)
567    - New! Interface to Paje (see http://www-id.imag.fr/Logiciels/paje/) 
568      through the function MSG_paje_output.
569    - New! Introducing two new functions MSG_process_kill() and MSG_process_killall().
570    - It is possible to bound the rate of a communication in MSG with 
571      MSG_task_put_bounded() (was already in the previous version but I had forgotten 
572      to write it in the changelog).
573    - Bug fix to let GRAS run on top of MSG until we move it directly on top
574      of the SURF.
575     
576   [Martin]
577   (infrastructure)
578    - Various cleanups to the autotools stuff
579    - Begin to move Gras examples to examples/gras/
580    - Let make distcheck work again (yeah!)
581   (documentation)
582    - documentation overhauled using doxygen. 
583      gtk-doc-tools is dead in SimGrid now.
584    - Automatically extract all existing logging categories, and add the list
585      to the documentation (long standing one, to say the less)
586   (gras)
587    - Cleanup the known architecture table. Reorder the entries to group what
588      should be, and use a more consistent naming scheme.
589      (some of the test dataset are still to be regenerated)
590    - New! Allow library to register globals on each process just as userdata
591      does. 
592       This is implemented using a xbt_dict and not a xbt_set, so we loose the
593        lookup time (for now).
594       Use it in msg and trp.
595       This cleans a lot the internals and helps enforcing privacy of the
596        headers between the gras components.
597    - New! Add a timer mechanism, not unlike cron(8) and at(1). 
598    - Bugfix: gras_os_time was delirious in RL.
599    - Bugfix: gras_trp_select/RL don't run into the wall when asked to select
600      onto 0 sockets.
601    - Reenable GRAS now that it works.
602
603  -- Arnaud Legrand <Arnaud.Legrand@imag.fr>  Mon, 14 Feb 2005 14:02:13 -0800
604
605 SimGrid (2.90) unstable; urgency=low
606
607   Alpha 1 on the path to SimGrid 3
608
609   * It is a long time since the last release of SimGrid. I'm sorry about
610     that but as I had told you, I was rewriting a lot of things. I apologize 
611     to those who had been reporting bugs to me and that I had not answered. 
612     If your bug is still in the new version, please tell me. Here is a 
613     summary of the main changes.
614
615   * REVOLUTION 1: The SimGrid project has merged with the GRAS project
616     lead by Martin Quinson. As a consequence SimGrid gains a lot in
617     portability, speed, and a lot more but you'll figure it out later. 
618     SimGrid now comprises 3 different projects : MSG, GRAS and SMPI. 
619     I wanted to release the new MSG as soon as possible and I have 
620     broken GRAS, which is the reason why, for now, only MSG is fully 
621     functional. A laconic description of these projects is available 
622     in the documentation.
623   
624   * REVOLUTION 2: I have removed SG and I am now using a new simulation
625     kernel optimized for our needs (called SURF but only the developers
626     should use it). Hence, MSG is now roughly 30 times faster and I think
627     that by rewriting a little bit MSG, I could event speed it up a little
628     bit more. Beside the gain in speed, it is also much easier to encode a
629     new platform model with SURF than it was with SG. More to come...
630   
631   * REVOLUTION 3: I have tried to change a little as possible the API of
632     MSG but a few things really had to disappear. The main differences
633     with the previous version are :
634        1) no more m_links_t and the corresponding functions. Platforms are
635          directly read from a XML description and cannot be hard-coded
636          anymore. The same format is used for application deployment
637          description. The new format is described in the documentation. 
638          Have a look in tools/platform_generation. There is a tiny script 
639          that converts from the old platform format to the new one. Concerning
640          the application deployment format, parsing the old one is tricky.  
641          I think most of you should however be able to convert your files.  If 
642          it is really an issue, I can write a C code that does the conversion. 
643          Let me know.
644        2) the toolbox tbx does not exist anymore. We now have a library
645           with much more data-structures but without the hash-tables (we have 
646           dictionaries that are much faster).
647
648  -- Arnaud Legrand <Arnaud.Legrand@imag.fr>  Mon, 31 Jan 2005 10:45:53 -0800
649
650 *****************************************************************************
651 * Follows the old GRAS changelog. It does not follow the same syntax, but I *
652 * don't feel like converting the oldies. (Mt)                                *
653 *****************************************************************************
654
655 2005-01-31 Arnaud
656   Version 2.90: "the long awaited one"
657   - Finished rewriting and debugging MSG. Rewrote the documentation.
658   - disable GRAS for now since it needs to be ported to the newest SG
659
660 2004-12-16 Martin
661   - Finish the port to windows (using mingw32 for cross-compile)
662
663 2004-11-28 Arnaud
664   - Main loop and datastructures of SURF. A cpu resource object is
665     functional. Surf can thus be used to create cpu's with variable
666     performance on which you can execute some actions.
667         
668 2004-11-15 Martin Quinson
669   - Port to ARM. Simply added the alignment and size descriptions. Should
670     work, but the ARM machines are so slow that I didn't had the opportunity
671     to 'make check' over there yet.
672
673 2004-11-15 Arnaud Legrand
674   - Trace manager now written. It uses a heap structure and is therefore
675     expected to be efficient. It may however be speeded up (particularly
676     when many events occur at the same date) by using red and black
677     trees. One day maybe... 
678   - Max-min linear system solver written. It uses a sparse matrix
679     structure taking advantage of its expected use. Most operations are
680     O(1) and free/calloc are called as few as possible. The computation of
681     the minimum could however be improved by using a red and black tree
682     (again ! ;).
683
684 2004-11-03 Arnaud Legrand
685   - Rename every gras_* function that was in xbt/ to its xbt_
686     counterpart.
687   - Add a heap and a doubly-linked list to xbt
688   - Added a dichotomy to the dictionaries. make check works as well before
689     so I assume that the patch is correct. I do not know however if things
690     run effectively faster than before now. :)
691
692   Inclusion of the SimGrid tree in the GRAS one. The archive is renamed to
693   SimGrid, and the version number is bumped to 2.x
694
695 2004-10-29 Martin Quinson
696   - Introduction of the remote errors. 
697     They are the result of a RMI/RPC on the remote machine.
698     ErrCodes being scalar values, you can't get the host on which those
699     errors did happen. Extending the error mechanism as in Gnome is possible.
700     No idea yet whether it is a good idea.
701     
702 2004-10-28 Martin Quinson
703   - Interface revolution: the Starred Structure Eradication.
704     I used to do typedef struct {} toto_t; and then handle *toto_t.
705     Arnaud (and Oli) didn't like it, and I surrendered. Now, you have:
706       - ???_t is a valid type (builded with typedef)
707       - s_toto_t is a structure (access to fields with .)
708       - s_toto   is a structure needing 'struct' keyword to be used
709       - e_toto_t is an enum
710       -   toto_t is an 'object' (struct*)
711     Exemple:
712       typedef struct s_toto {} s_toto_t, *toto_t;
713       typedef enum {} e_toto_t;
714     Moreover, only toto_t (and e_toto_t) are public. The rest (mainly
715      s_toto_t) is private.
716     
717   - While I was at it, all gras_<obj>_free() functions want a gras_<obj>_t*
718     so that it can set the variable to NULL. It was so for dicts and sets,
719     it changed for dynars.
720     
721   - Fix a bunch of memleaks in dict_remove
722   - Fix a bug in sg/server_socket opening: it failed all the time.
723
724 2004-10-07 Martin Quinson
725   - Speed up dynar lookup operation a bit.
726   
727     gras_dynar_get is dead. 
728     
729     Now, you can choose between gras_dynar_get_cpy (the old gras_dynar_get
730     but should be avoided for efficiency reasons) and gras_dynar_get_ptr
731     (which gives you the address of the stored data).
732     
733     gras_dynar_get_as is an helpful macro which allows you to retrieve a
734     copy of the data using an affectation to do the job and not a memcpy.
735     
736     int toto = gras_dynar_get_as(dyn,0,int); rewrites itself to
737     int toto = *(int*)gras_dynar_get_ptr(dyn,0);
738     
739     It does not really speedup the dynar test because they are
740     setting elements all the time (and look them seldom). But the dict does
741     far more lookup than setting.
742
743     So, this brings the dict_crash test from ~33s to ~25s (200000 elms).
744
745 2004-10-05 Martin Quinson
746   - Allow to (en/dis)able the cycle detection at run time.
747   
748     Whether we should check for cycle or not is now a property of each
749     datatype. When you think there may be some cycle, use datadesc_cycle_set.
750     datadesc_cycle_unset allow to remove this property when previously set.
751     
752     Note that the cycle detection is off by default since it impacts the 
753     performance. Watch the data you feed GRAS with ;)
754     
755     This property is hereditary. Any element embedded in a structure having it
756     set have it set for the time of this data exchange.
757     
758     You should set it both on sender and receiver side. If you don't set it on
759     sender side, it will enter an endless loop. If you forget on receiver
760     side, the cycles won't be recreated after communication.
761     
762   - Header reorganization.
763     Kill gras_private.h, each submodule must load the headers it needs.
764
765 2004-10-04 Martin Quinson
766   - Interface revolution: do not try to survive to malloc failure.
767   
768     Now, gras_malloc and friends call gras_abort() on failure.
769     As a conclusion, malloc_error is not a valid error anymore, and all
770       functions for which it was the only gras_error_t return value are
771       changed. They now return void, or there result directly. 
772     This simplify the API a lot.
773
774 2004-09-29 Martin Quinson
775   - Re-enable raw sockets.
776     Created by gras_socket_{client,server}_ext;
777     Used with gras_raw_{send,recv}
778     No select possible.
779     
780     It should allow to kill the last bits of gras first version soon.
781   
782     This is not completely satisfactory yet (duplicate code with
783      chunk_{send,recv}; a bit out of the plugin mechanism), but it should
784      work. 
785
786   - Simplify transport plugin (internal) interface by not passing any
787     argument to _server and _client, but embedding them in the socket
788     struct directly. 
789
790 2004-09-28 Martin Quinson
791   - Finish the port to AIX.
792     autoconf was my problem (segfault within the malloc replacement
793     function. No idea why)
794         
795 2004-09-16 Martin Quinson
796   - Fix some size_t madness on 64bit architectures.
797   
798 2004-09-08 Martin Quinson
799   - Reduce the number of system headers loaded, overload some more system
800     calls (such as malloc to cast the result of the system one, and work
801     properly on AIX)
802   - Fix and reintroduce the config support
803
804 2004-09-07 Martin Quinson
805   - Source code reorganization to allow Arnaud to surf all over there.
806   - Allow to document the logging categories.
807   - Remove all uppercase from logging categories and useless cleanup in names.
808
809 2004-08-18 Martin Quinson
810   Version 0.6.2 (protocol not changed; API changed)
811   - Interface cleanup: gras_msgtype_by_name returns the type (instead of a
812      gras_error_t), and NULL when not found. Functions expecting a msgtype
813      as argument (msg_wait; msg_send) deal with NULL argument by providing a
814      hopefully usefull message.
815   - Portability to prehistoric sparcs again
816
817 2004-08-17 Martin Quinson
818   Version 0.6.1 (protocol not changed; ABI not changed)
819   - prealloc some buffers to speed things up
820
821 2004-08-11 Martin Quinson
822   Version 0.6 (protocol not changed; ABI expended)
823   - The parsing macro can deal with the references, provided that you add
824     the relevant annotations (using GRAS_ANNOTE(size,field_name))
825
826 2004-08-09 Martin Quinson
827   Version 0.5 (protocol not changed; ABI changed)
828   - Allow to off turn the cycle detection code in data exchange at
829     compilation time. It should be at run time, but I'm short of time (and
830     the config stuff is still broken). That way, we keep dict out of the
831     critical path, which is good because the performance is poor:
832      - search not dichotomial yet
833      - dynar give no way to access their content and memcpy everytime
834   - In composed data description (struct, ref and so on), stop foolness of
835     keeping the subtype's ID, but store the type itself. This keeps sets out
836     of the critical path, which is good since they rely on dynar and
837     dictionnaries. The only loose of that is that we cannot detect the
838     redeclaration of a structure/union with another content (but I'm not sure 
839     the code detected well this error before anyway). We still can detect
840     the redefinition discrepancy for the other types.
841   - Use a whole bunch of optimisation flags (plus -fno-strict-aliasing since
842     it breaks the code because of type-punning used all over the place).
843     This breaks on all non-gcc architectures (for now).
844     
845   All those changes (plus the buffer of last time) allow me to gain 2 order
846   of magnitude on cruel tests consisting of 800000 array of integers on two
847   level of a hierarchical structure (200 secondes -> 4 secondes)
848   
849   API change:
850     - the selector of reference must now return the type it points to, not
851       the ID of this type.
852
853 2004-08-06 Martin Quinson
854   Version 0.4 (protocol changed; ABI not changed)
855   - Allow to pass --gras-log argument to processes in simulation mode. Really.
856   - New debugging level: trace (under debug) to see effect of GRAS_IN/OUT
857   - Implement a buffer transport, and use it by default (it relies on tcp in
858      real life and on sg in simulation).
859     That's a bit hackish since I had a new field to the structure to store
860      its data without interfering with the subtype ones. Inheritance
861      is tricky in C. And that's a kind of reverse inheritance with one class
862      derivating two classes. Or maybe a game with java interfaces. Anyway,
863      that's damn hard in C (at least).
864     Moreover, I got tired while trying to ensure plugin separation and
865      genericity in SG mode. MSG wants me to do weird things, so let's go for
866      cruel hacks (temporarily of course ;).
867      See comment in transport_private.h:71
868   - do not include all the _interface headers in private but in the files
869     which really need them (to cut the compilation time when they are
870     modified) 
871
872 2004-07-26 Martin Quinson
873   Version 0.3 (protocol not changed; ABI changed)
874   - Major overhault of the datadesc interface to simplify it:
875     - shorted the function names:
876       s/gras_datadesc_declare_struct/gras_datadesc_struct/ and so on
877     - add a trivial way to push/pop integers into the cbps without malloc.
878       This allows to make really generic sub_type description, which simply
879         pop their size of the stack.
880     - add a function gras_datadesc_ref_pop_arr() which does what users want
881       most of the time: Declare a dynamic array (which pops its size of the
882       stack) and declare a reference to it. Poor name, but anyway.
883     - kill the post-send callback, add a post-receive one
884     
885 2004-07-23 Martin Quinson
886   Version 0.2 (protocol changed; ABI changed)
887   - add some testing for cpbs in the test cases, and fix some more bugs.
888     This invalidate again the little64 data file, since I cannot regenerate
889     it myself.
890   - remove an awfull optimization in the logging stuff, allowing me to:
891     - understand it again
892     - learn gcc how to check that the argument match the provided format
893     - fix all errors revealed by gcc after that
894   - internal keys of dict are not \0 terminated. Deal with it properly in
895     loggings instead of segfaulting when the user want to see the logs :-/
896
897 2004-07-22 Martin Quinson
898   - Fix some stupid bug preventing cbps (callback postit) from working
899
900 2004-07-21 Martin Quinson
901   - Some documentation cleanups
902   - remove the useless last argument of msgtype_declare
903   - rename the Virtu functions to fit into the 'os' namespace
904   - move headers src/include -> src/include/gras/ and stop fooling with 
905     gras -> . symbolic link
906   - make distcheck is now successful
907
908 2004-07-19 Martin Quinson
909   Version 0.1.1
910   - Build shared library also
911   - Install html doc to the right location
912   - stop removing maintainer files in make clean
913   - build tests only on make check
914   
915 2004-07-13 Martin Quinson
916   version 0.1
917   - No major issue in previous version => change versionning schema
918   - Re-enable little64 convertion test now that Abdou kindly regenerated the
919     corresponding dataset.
920   
921 2004-07-11 Martin Quinson
922   version 0.0.4
923   - Get it working with any kind of structure (we can compute the padding
924     bytes remotely for all the architectures I have access to)
925   - Implement the structure parsing macro (still not quite robust/complete)
926   - Improvement to the remote testing toysuite
927   
928 2004-07-10 Martin Quinson
929  [autoconf mechanism]
930   - get ride of a bunch of deprecated macros
931   - actually run the test for two-compliment, not only compile it :-/
932   - test whether the structures get packed (and bail out if yes. Damn.
933     Alignment is a serious matter)
934   - test whether the structures get compacted (but respecting the alignment
935     constraints of each types)
936   - test whether the array fields of structures can straddle alignment boundaries
937  [base]
938   - Damnit, double are bigger than float (typo in creation of 'double' datadesc)
939     (took me 2 hours to find that bug, looking at the wrong place)
940   - Add gras_datadesc_declare_{union,struct}_close(). They must be used
941     before sending/receiving and are used to compute the offsets of fields
942   - Given that padding size depend even on compiler options, keep track of
943     alignment and aligned_size only for the current architecture. Not a big
944     deal since we send structure fields one after the other (seems
945     reasonable).    
946   - Add the datastructure used for IEEE paper by the PBIO guys to the test
947     program, let it work on linux/gcc/little32. portability todo.
948
949 2004-07-08 Martin Quinson
950   - import and improve remote compilation support from FAST
951   - make sure make check works on half a dozen of machines out there
952
953 2004-07-07 Martin Quinson
954  Let's say it's version 0.0.3 ;)
955   - Implement conversions (yuhu!)
956   - Let it work on solaris (beside conversion, of course)
957   - Stupid me, using rand() to generate the conversion datatests in not wise.
958
959 2004-07-06 Martin Quinson
960   - Let make dist work, since I'm gonna need it to compile on remote hosts
961   - Let Tests/datadesc_usage write the architecture on which the file was
962     generated as first byte.
963   - Add PowerPC (being also IRIX64), SPARC (also power4) and ALPHA
964     architecture descriptions. 
965   - Add datadesc_usage.{i386,ppc,sparc} files being the result of execution
966     on those architectures.
967   - Optimization: send/recv array of scalar in one shoot
968
969 2004-07-05 Martin Quinson
970   - YEAH! GRAS/SG and GRAS/RL are both able to run the ping example !
971   
972   - Plug a whole bunch of memleaks
973   - each process now have to call gras_{init,exit}. One day, their log
974     settings will be separated
975   - Continue the code factorisation between SG, RL and common in Transport.
976
977 2004-07-04 Martin Quinson
978  [Transport]
979   - Redistribution between SG and RL. 
980     We wanna have to accept in SG, so move accepted related parts of RL in
981     the common part. (more precisely, the dynar of all known sockets is no
982     more a static in transport.c, but part of the process_data)
983  [Core/module.c] 
984  [gras_stub_generator]
985   - Bug fix: Do call gras_process_init from gras_init (wasnt called in RL).
986
987 2004-07-03 Martin Quinson
988   - Create a new log channel tbx containing dict, set, log, dynar (to shut
989     them all up in one shot)
990  [DataDesc]
991   - Fix the ugly case of reference to dynamic array.
992   - New (semi-public) function gras_datadesc_size to allow the messaging
993     layer to malloc the needed space for the buffer.
994  [Transport]
995   - gras_socket_close now expect the socket to close (and not its address to
996     put NULL in it after it). This is because the socket passed to handlers
997     is one of their argument (=> not writable).
998  [Messaging]
999   - propagate the interface cleanup from last week in datadesc, ie remove a
1000     superfluous level of indirection. User pass adress of variable
1001     containing data (both when sending and receiving), and not of a variable
1002     being a pointer to the data. Let's say that I like it better ;)
1003       The price for that is constructs like "int msg=*(int*)payload" in
1004     handlers, but it's a fine price, IMHO.
1005  [examples/ping]
1006   - Let it work in RL (yuhu)
1007
1008 2004-06-21 Martin Quinson
1009  [Transport]
1010    - porting SG plugin and SG select to new standards (works almost).
1011    - plug memleaks and fix bugs around.
1012    
1013  [DataDesc] 
1014    - cleanup the prototype of data recv and force users to specify when they 
1015      want to handle references to objects. Test case working even for cycles.
1016    - plug memleaks. Valgrind is perfectly ok with this.
1017
1018 2004-06-12 Martin Quinson
1019  [Transport] 
1020    - cleanup the separation between plugin and main code in plugin creation 
1021
1022 2004-06-11 Martin Quinson
1023  [Transport]
1024    - Reput hook for raw sockets, needed for BW experiments
1025    - kill a few lines of dead code
1026  [Data description] Interface cleanup
1027    - gras_datadesc_by_name returns the searched type or NULL.
1028      That way, no variable is needed to use a type desc once, which makes
1029       the code clearer.
1030    - gras_datadesc_declare_[struct|union]_append_name is removed. The last
1031       two parameters were strings (field name, type name), leading to
1032       common errors.
1033  [Dicos] Interface cleanup
1034    - gras_dico_retrieve -> gras_dico_get ; gras_dico_insert -> gras_dico_set 
1035      This is consistant with the dynar API.
1036
1037 2004-04-21 Martin Quinson
1038  [Messaging]
1039    - Porting to new standards.
1040  [Data description]
1041    - interface cleanup. 
1042      There is no bag anymore, no need to take extra provision to mask the
1043        pointers behind "ID". 
1044      Better splitup of functions between files create/exchange/convert.
1045        This is still a bit artificial since convert and receive are so
1046        interleaved, but anyway.
1047  [Virtu(process)]
1048    - add a queued message list to procdata (the ones not matching criteria
1049      in msg_wait)
1050    - factorize some more code between SG and RL wrt procdata
1051  [Tests]
1052    - use gras_exit in example to track memleaks
1053    - get rid of gs_example now that GS is properly integrated into gras
1054    - update run_test to integrate the lastest tests (datadesc)
1055  [Logging]
1056    - rename WARNINGn macros to WARNn since it prooved error-prone
1057      
1058 2004-04-19 Martin Quinson
1059  [Data description]
1060    - register init/exit functions within gras module mechanism   
1061    - send/receive function. 
1062    Convertion is not implemented, but short-cutted if not needed.
1063    struct/array elements are sent one by one (instead of block-wise), but
1064      nobody really cares (yet). Get a prototype before optimizing.
1065    - tests (using a file socket) for DD send/receive on:
1066      - base types: int, float
1067      - array: fixed size, string (ie ref to dynamic string)
1068      - structure: homogeneous, heterogeneous
1069      - chained list, graph with cycle
1070    Believe it or not, valgrind is not too unhappy with the results. The
1071     cycle happily segfaults, but the others are ok. And I'm sick of pointers
1072     for now.
1073  [Transport]
1074    [File plugin] 
1075      - Bugfix when using a filename explicitely (instead of '-')
1076
1077 2004-04-09 Martin Quinson
1078  [Transport plugins]
1079    - factorize more code between RL and SG in socket creation
1080    - Complete the implementation and tests of:
1081      o TCP
1082      o file (only in RL, and mainly for debugging)
1083      
1084      I lost 3 days to design a portable address resolver, and then decided
1085        that the prototype mainly have to run on my box.
1086      Addressing portability too early may be like optimizing too early :-/
1087  [Tests]
1088    - use gras_init in the Tests instead of the crappy parse_log_opt 
1089      (the latter function is removed)
1090  [Conditional execution]
1091    - New functions: gras_if_RL/gras_if_SG (basic support for this)
1092  [Code reorganisation]
1093   - Get rid of libgrasutils.a since it makes more trouble than it solves.
1094     Build examples against the RL library, since there is no way to disable
1095     its creation for now.