Files
OpenCellular/chip/host/persistence.h
Vic Yang 74abf36971 Test sysjump tag in kb_8042 test
This checks that keyboard state is preserved across system jump.

BUG=chrome-os-partner:19236
TEST=Pass the test
BRANCH=None

Change-Id: I53c5bb68246fd117b351d89c3907daf028bc4ef3
Signed-off-by: Vic Yang <victoryang@chromium.org>
Reviewed-on: https://gerrit.chromium.org/gerrit/62908
Reviewed-by: Randall Spangler <rspangler@chromium.org>
2013-07-23 16:06:22 -07:00

20 lines
471 B
C

/* Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
/* Persistence module for emulator */
#ifndef _PERSISTENCE_H
#define _PERSISTENCE_H
#include <stdio.h>
FILE *get_persistent_storage(const char *tag, const char *mode);
void release_persistent_storage(FILE *ps);
void remove_persistent_storage(const char *tag);
#endif /* _PERSISTENCE_H */