File: data.h

package info (click to toggle)
diskscan 0.14.1-6
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 800 kB
  • ctags: 465
  • sloc: ansic: 3,696; sh: 3,565; python: 155; makefile: 41
file content (9 lines) | stat: -rw-r--r-- 284 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
#ifndef DISKSCAN_DATA_H
#define DISKSCAN_DATA_H

#include "arch.h"

void data_log(data_log_t *log, uint64_t lba, uint32_t len, io_result_t *io_res, uint32_t t_nsec);
void data_log_raw(data_log_raw_t *log_raw, uint64_t lba, uint32_t len, io_result_t *io_res, uint32_t t_nsec);

#endif