source: trunk/include/appdex.h @ 704

Revision 510, 891 bytes checked in by dcarter, 4 years ago (diff)

Merged experimental changes from CMG branch

Line 
1/**********************************************************************
2 * Copyright (c) 2005-2008 David Carter <dcarter@arm4.org> and others.
3 * All rights reserved.   This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors:
9 * David Carter - Initial API and implementation
10 **********************************************************************/
11
12#ifndef ARM4_APPDEX_H
13#define ARM4_APPDEX_H 1
14
15typedef enum {
16        /* These values are bit masks */
17        arm4_appdex_on = 1,
18        arm4_appdex_use_default = 2,
19        arm4_appdex_autolearn = 4
20} arm4_appdex_t;
21
22#define ARM4_APPDEX_DEFAULT_RESPONSE_TIME               (4)     /* This is defined in the appdex standard */
23#define ARM4_APPDEX_DEFAULT_FLAGS                               (arm4_appdex_use_default)
24
25#endif
Note: See TracBrowser for help on using the repository browser.