Logo AND Algorithmique Numérique Distribuée

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