Put port-specific test configuration in atomport-tests.h. Rename atomuser.h to atomport.h. Non-exported port header renamed to atomport-private.h.

This commit is contained in:
Kelvin Lawson
2010-02-01 22:49:04 +00:00
parent 248e1318fb
commit f023bf26de
27 changed files with 126 additions and 101 deletions

View File

@@ -31,7 +31,7 @@
#define __ATOM_H
#include "atomtimer.h"
#include "atomuser.h"
#include "atomport.h"
/* Data types */

View File

@@ -146,7 +146,6 @@
#include <stddef.h>
#include "atom.h"
#include "atomuser.h"
/* Global data */

View File

@@ -105,7 +105,6 @@
#include "atom.h"
#include "atommutex.h"
#include "atomtimer.h"
#include "atomuser.h"
/* Local data types */

View File

@@ -97,7 +97,6 @@
#include "atom.h"
#include "atomqueue.h"
#include "atomtimer.h"
#include "atomuser.h"
/* Local data types */

View File

@@ -92,7 +92,6 @@
#include "atom.h"
#include "atomsem.h"
#include "atomtimer.h"
#include "atomuser.h"
/* Local data types */

View File

@@ -69,7 +69,6 @@
#include <stdio.h>
#include "atom.h"
#include "atomuser.h"
/* Data types */

View File

@@ -30,7 +30,8 @@
#ifndef __ATOM_TIMER_H
#define __ATOM_TIMER_H
#include "atomuser.h"
#include "atomport.h"
/* Callback function prototype */
typedef void ( * TIMER_CB_FUNC ) ( POINTER cb_data ) ;