mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-07 06:44:18 +00:00
2a709f28fa
* 0day explit mitigation * Memory corruption prevention * Privilege escalation prevention * Buffer over flow prevention * File System corruption defense * Thread escape prevention This may very well be the most intensive inclusion to BrooklynR. This will not be part of an x86 suite nor it will be released as tool kit. The security core toolkit will remain part of kernel base.
20 lines
320 B
C
20 lines
320 B
C
/*
|
|
* Copyright (C) ST Ericsson SA 2011
|
|
*
|
|
* License Terms: GNU General Public License v2
|
|
*
|
|
* STE Ux500 Watchdog platform data
|
|
*/
|
|
#ifndef __UX500_WDT_H
|
|
#define __UX500_WDT_H
|
|
|
|
/**
|
|
* struct ux500_wdt_data
|
|
*/
|
|
struct ux500_wdt_data {
|
|
unsigned int timeout;
|
|
bool has_28_bits_resolution;
|
|
};
|
|
|
|
#endif /* __UX500_WDT_H */
|