Direct sorting when adding
[lttv.git] / ltt / branches / poly / doc / developer / hook_prio.txt
CommitLineData
6ea2aecb 1Linux Trace Toolkit
2
3Mathieu Desnoyers 18-05-2004
4
5
6Seeing that a very precise hook call ordering is needed when processing events
7(especially the order for calling state update hooks and event delivery hooks),
8this document defines a new type and interface that permits to merge all kind of
9hooks, eventually sorted by the priority associated to them.
10
b5e8b4a6 11- Type LttvHooks with priorities
12
13This is a modification to the actual LttvHooks that associates a priority with
14each hook. The container for this type would be a garray, just like hook.c, but
15a lttv_hooks_prio_sort would be called every time a hook is added to a list. It
16would sort the hooks in a hook list by priority : from highest priority (-19) to
17lowest (20). The default priority is 0.
18
19In order to make lttv_hooks_call aware of the different kind of hooks it has to
20call, the LttvHooksById will be modified to integrate a new "main" list : a
21pointer to a LttvHooks that will be called for any Id.
22
23A new lttv_hooks_by_id_call that will get the hooks from the main and by_id
24lists in the right order will deal with the multiple lists priority problem.
25
26
6ea2aecb 27
28
This page took 0.024636 seconds and 4 git commands to generate.