* Flush remaining data, close the file and free all resources. */
| 912 | * Flush remaining data, close the file and free all resources. |
| 913 | */ |
| 914 | void |
| 915 | alq_close(struct alq *alq) |
| 916 | { |
| 917 | /* Only flush and destroy alq if not already shutting down. */ |
| 918 | if (ald_rem(alq) == 0) |
| 919 | alq_destroy(alq); |
| 920 | } |
| 921 | |
| 922 | static int |
| 923 | alq_load_handler(module_t mod, int what, void *arg) |
no test coverage detected