Explorar el Código

Document the configuration location caching

Clara Hobbs hace 6 años
padre
commit
9b79ee0791
Se han modificado 1 ficheros con 5 adiciones y 0 borrados
  1. 5
    0
      src/storage.h

+ 5
- 0
src/storage.h Ver fichero

@@ -79,6 +79,11 @@ void pdb_config_flash_update(const struct pdb_config *cfg);
79 79
 /*
80 80
  * Get the first valid configuration strucure.  If the flash page is empty,
81 81
  * return NULL instead.
82
+ *
83
+ * The location of the configuration is cached, and the cache is updated when
84
+ * pdb_config_flash_erase and pdb_config_flash_update are called.  The full
85
+ * lookup is only performed the first time this function is called, so there's
86
+ * very little penalty to calling it repeatedly.
82 87
  */
83 88
 struct pdb_config *pdb_config_flash_read(void);
84 89
 

Loading…
Cancelar
Guardar