Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Create a new log channel tbx containing dict, set, log, dynar, config (to shut
[simgrid.git] / changelog
1 2004-07-03
2  - Create a new log channel tbx containing dict, set, log, dynar (to shut
3    them all up in one shot)
4
5 2004-06-21
6  [Transport]
7    - porting SG plugin and SG select to new standards (works almost).
8    - plug memleaks and fix bugs around.
9    
10  [DataDesc] 
11    - cleanup the prototype of data recv and force users to specify when they 
12      want to handle references to objects. Test case working even for cycles.
13    - plug memleaks. Valgrind is perfectly ok with this.
14
15 2004-06-12
16  [Transport] 
17    - cleanup the separation between plugin and main code in plugin creation 
18
19 2004-06-11
20  [Transport]
21    - Reput hook for raw sockets, needed for BW experiments
22    - kill a few lines of dead code
23  [Data description] Interface cleanup
24    - gras_datadesc_by_name returns the searched type or NULL.
25      That way, no variable is needed to use a type desc once, which makes
26       the code clearer.
27    - gras_datadesc_declare_[struct|union]_append_name is removed. The last
28       two parameters were strings (field name, type name), leading to
29       common errors.
30  [Dicos] Interface cleanup
31    - gras_dico_retrieve -> gras_dico_get ; gras_dico_insert -> gras_dico_set 
32      This is consistant with the dynar API.
33
34 2004-04-21 Martin Quinson
35  [Messaging]
36    - Porting to new standards.
37  [Data description]
38    - interface cleanup. 
39      There is no bag anymore, no need to take extra provision to mask the
40        pointers behind "ID". 
41      Better splitup of functions between files create/exchange/convert.
42        This is still a bit artificial since convert and receive are so
43        interleaved, but anyway.
44  [Virtu(process)]
45    - add a queued message list to procdata (the ones not matching criteria
46      in msg_wait)
47    - factorize some more code between SG and RL wrt procdata
48  [Tests]
49    - use gras_exit in example to track memleaks
50    - get rid of gs_example now that GS is properly integrated into gras
51    - update run_test to integrate the lastest tests (datadesc)
52  [Logging]
53    - rename WARNINGn macros to WARNn since it prooved error-prone
54      
55 2004-04-19 Martin Quinson
56  [Data description]
57    - register init/exit functions within gras module mecanism   
58    - send/receive function. 
59    Convertion is not implemented, but short-cutted if not needed.
60    struct/array elements are sent one by one (instead of block-wise), but
61      nobody really cares (yet). Get a prototype before optimizing.
62    - tests (using a file socket) for DD send/receive on:
63      - base types: int, float
64      - array: fixed size, string (ie ref to dynamic string)
65      - structure: homogeneous, heterogeneous
66      - chained list, graph with cycle
67    Believe it or not, valgrind is not too unhappy with the results. The
68     cycle happily segfaults, but the others are ok. And I'm sick of pointers
69     for now.
70  [Transport]
71    [File plugin] 
72      - Bugfix when using a filename explicitely (instead of '-')
73
74 2004-04-09 Martin Quinson
75  [Transport plugins]
76    - factorize more code between RL and SG in socket creation
77    - Complete the implementation and tests of:
78      o TCP
79      o file (only in RL, and mainly for debugging)
80      
81      I lost 3 days to design a portable address resolver, and then decided
82        that the prototype mainly have to run on my box.
83      Addressing portability too early may be like optimizing too early :-/
84  [Tests]
85    - use gras_init in the Tests instead of the crappy parse_log_opt 
86      (the latter function is removed)
87  [Conditional execution]
88    - New functions: gras_if_RL/gras_if_SG (basic support for this)
89  [Code reorganisation]
90   - Get rid of libgrasutils.a since it makes more trouble than it solves.
91     Build examples against the RL library, since there is no way to disable
92     its creation for now.