/** * nvif_log - structure for tracking logging buffers * @entry: an entry in a list of struct nvif_logs * @shutdown: pointer to function to call to clean up * * Structure used to track logging buffers so that they can be cleaned up * when the module exits. * * The @shutdown function is called when the module exits. It should free all * backing resources, such as logging buffers.
*/ struct nvif_log { struct list_head entry; void (*shutdown)(struct nvif_log *log);
};
/** * nvif_logs - linked list of nvif_log objects
*/ struct nvif_logs { struct list_head head;
};
list_for_each_entry_safe(log, n, &logs->head, entry) { /* shutdown() should also delete the log entry */
log->shutdown(log);
}
}
}
externstruct nvif_logs gsp_logs;
#endif
#endif
Messung V0.5
¤ Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.0.12Bemerkung:
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.