mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
Move DT structs to the header where they belong to. Signed-off-by: Alexander Egorenkov <egorenar@linux.ibm.com> Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
46 lines
926 B
C
46 lines
926 B
C
/*
|
|
* zgetdump - Tool for copying and converting System z dumps
|
|
*
|
|
* Dump tool info generic functions
|
|
*
|
|
* Copyright IBM Corp. 2001, 2017
|
|
*
|
|
* s390-tools is free software; you can redistribute it and/or modify
|
|
* it under the terms of the MIT license. See LICENSE for details.
|
|
*/
|
|
|
|
#ifndef DT_H
|
|
#define DT_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include "dfi.h"
|
|
|
|
#define DUMP_EXTENDED true
|
|
#define DUMP_NON_EXTENDED false
|
|
|
|
struct dt {
|
|
const char *desc;
|
|
int (*init)(void);
|
|
void (*info)(void);
|
|
};
|
|
|
|
void dt_init(void);
|
|
void dt_info_print(void);
|
|
void dt_arch_set(enum dfi_arch arch);
|
|
void dt_version_set(int version);
|
|
void dt_attr_mem_limit_set(u64 mem_limit);
|
|
void dt_attr_force_set(int value);
|
|
void dt_attr_dasd_type_set(const char *dasd_type);
|
|
|
|
/*
|
|
* Supported s390 dumpers
|
|
*/
|
|
extern struct dt dt_s390mv;
|
|
extern struct dt dt_s390mv_ext;
|
|
extern struct dt dt_s390sv;
|
|
extern struct dt dt_s390sv_ext;
|
|
extern struct dt dt_scsi;
|
|
|
|
#endif
|