index
:
libosmocore
prometheus
[no description]
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
src
/
fsm.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
add osmo_fsm_inst_state_chg_keep_timer()
Neels Hofmeyr
2018-05-31
1
-30
/
+64
*
fsm: guard action callback
Philipp Maier
2018-05-15
1
-1
/
+3
*
add osmo_fsm_inst_update_id_f()
Neels Hofmeyr
2018-04-09
1
-22
/
+45
*
cosmetic: osmo_fsm_inst_update_id(): don't log "allocate"
Neels Hofmeyr
2018-04-09
1
-2
/
+3
*
fsm: id: properly set name in case of NULL id
Neels Hofmeyr
2018-04-09
1
-5
/
+3
*
osmo_fsm_inst_find_by_name(): guard against strcmp(NULL)
Neels Hofmeyr
2018-04-09
1
-0
/
+5
*
fsm: Update the name as well if the id is updated and accept NULL
Daniel Willmann
2018-03-19
1
-14
/
+22
*
print BIG FAT ERROR message if osmo_fsm lacks event names
Stefan Sperling
2018-02-26
1
-0
/
+2
*
fsm: allow graceful exit on FSM termination
Philipp Maier
2018-02-19
1
-2
/
+13
*
fsm: Add a function to change the FSM instance ID later
Daniel Willmann
2018-02-15
1
-6
/
+25
*
Revert "fsm: do not terminate child FSMs early"
Harald Welte
2018-02-09
1
-4
/
+3
*
fsm: do not terminate child FSMs early
Philipp Maier
2018-02-09
1
-3
/
+4
*
fsm: add functions for unlinking and changing parents
Philipp Maier
2018-01-24
1
-3
/
+34
*
fsm: fix double llist_del in osmo_fsm_inst_term()
Philipp Maier
2018-01-17
1
-2
/
+3
*
fsm_tmr_cb: don't set T=0, the fi may no longer exist
Neels Hofmeyr
2017-11-25
1
-4
/
+5
*
Fix/Update copyright notices; Add SPDX annotation
Harald Welte
2017-11-13
1
-0
/
+2
*
fsm: Enforce FSM and FSM instance names are valid osmocom identifiers
Harald Welte
2017-10-24
1
-1
/
+12
*
doxygen: unify use of \file across the board
Neels Hofmeyr
2017-06-23
1
-5
/
+5
*
doxygen: enable AUTOBRIEF, drop \brief
Neels Hofmeyr
2017-06-23
1
-14
/
+14
*
fsm.c: Fix compilation warning: Use PRIu32 for uint32_t
Pau Espin Pedrol
2017-06-22
1
-3
/
+4
*
update/extend doxygen documentation
Harald Welte
2017-06-12
1
-4
/
+2
*
timer: add osmo_timer_setup()
Pablo Neira Ayuso
2017-05-09
1
-2
/
+1
*
fsm: Re-set fsm_inst->T to 0 after timer expiration
Harald Welte
2017-04-16
1
-1
/
+4
*
osmo_fsm: Lookup functions to find FSM Instance by name or ID
Harald Welte
2017-04-16
1
-0
/
+24
*
fsm: Add VTY introspection of osmo_fsm and their instances
Harald Welte
2017-01-07
1
-3
/
+3
*
Add osmo_fsm_find_by_name() and avoid registering FSM with same name
Harald Welte
2017-01-07
1
-1
/
+13
*
fsm: term: get parent pointer as late as possible
Neels Hofmeyr
2016-12-24
1
-1
/
+4
*
fsm: factor out osmo_fsm_inst_term_children() from osmo_fsm_inst_term()
Neels Hofmeyr
2016-12-24
1
-20
/
+42
*
fsm: move LOGPFSMSRC and LOGPFSMLSRC to .h
Neels Hofmeyr
2016-12-24
1
-13
/
+0
*
fsm: log calling file+line for error "event for NULL fi"
Neels Hofmeyr
2016-12-24
1
-2
/
+3
*
fsm: doc: add missing file, line args; fix ws + tweak on one line
Neels Hofmeyr
2016-12-24
1
-1
/
+7
*
fsm: log tweak: upon free, say 'Freeing instance'
Neels Hofmeyr
2016-12-21
1
-1
/
+1
*
utils.h: add OSMO_STRINGIFY and OSMO_VALUE_STRING macros
Neels Hofmeyr
2016-12-21
1
-7
/
+5
*
fsm: term: safer iteration to remove all child FSMs
Neels Hofmeyr
2016-12-20
1
-4
/
+20
*
fsm: explicitly log removal from parent fsm
Neels Hofmeyr
2016-12-16
1
-0
/
+3
*
add value strings for enum osmo_fsm_term_cause and use for logging
Neels Hofmeyr
2016-12-15
1
-1
/
+13
*
typo in comment for osmo_fsm_log_addr()
Neels Hofmeyr
2016-12-14
1
-1
/
+1
*
fsm: log caller's source for events and state changes, not fsm.c lines
Neels Hofmeyr
2016-12-14
1
-17
/
+45
*
fsm: add LOGPFSML to pass explicit logging level
Neels Hofmeyr
2016-12-14
1
-9
/
+6
*
Add logging and testing for FSM deallocation
Max
2016-11-08
1
-0
/
+1
*
Fix typo in osmo_fsm_log_addr()
Max
2016-11-01
1
-1
/
+1
*
fsm: Make sure we call 'onenter' of new state, not old state
Harald Welte
2016-08-01
1
-0
/
+1
*
fsm: delete the timer when changing state
Harald Welte
2016-07-10
1
-0
/
+3
*
fsm: talloc + copy the 'id' passed into a FSM
Harald Welte
2016-07-10
1
-1
/
+2
*
fsm: call 'onenter' as last step of a state change
Harald Welte
2016-07-10
1
-3
/
+4
*
fsm: Introduce default time-out handling
Harald Welte
2016-06-27
1
-8
/
+13
*
Add Finite State Machine abstraction code
Harald Welte
2016-06-16
1
-0
/
+422