/******************************************************************************* * Copyright (c) 2008 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. * The Eclipse Public License is available at * http://www.eclipse.org/legal/epl-v10.html * and the Eclipse Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * You may elect to redistribute this code under either of these licenses. * * Contributors: * Wind River Systems - initial API and implementation *******************************************************************************/ /* * This file contains "define" statements that control agent configuration. * SERVICE_* definitions control which service implementations are included into the agent. * * This is example agent configuration. It includes only few standard services, * and one example service: Day Time. */ #ifndef D_config #define D_config #include #if defined(WIN32) || defined(__CYGWIN__) # define TARGET_UNIX 0 #elif defined(_WRS_KERNEL) # define TARGET_UNIX 0 #else # define TARGET_UNIX 1 #endif #define SERVICE_FileSystem 1 #define SERVICE_SysMonitor TARGET_UNIX #define ENABLE_Trace 1 #define ENABLE_Discovery 1 #endif /* D_config */