- job.h and job.c moved to directory jobs

This commit is contained in:
Jan Hutter 2005-11-16 12:43:08 +00:00
parent 5dee5e68c5
commit 2b3183835a
5 changed files with 6 additions and 6 deletions

View File

@ -24,7 +24,7 @@
#include "job.h"
#include "utils/allocator.h"
#include "../utils/allocator.h"
mapping_t job_type_m[] = {
{INCOMING_PACKET, "INCOMING_PACKET"},

View File

@ -23,8 +23,8 @@
#ifndef JOB_H_
#define JOB_H_
#include "types.h"
#include "definitions.h"
#include "../types.h"
#include "../definitions.h"
/**
* Type of Jobs in Job-Queue

View File

@ -26,7 +26,7 @@
#include <sys/time.h>
#include "../types.h"
#include "../job.h"
#include "../jobs/job.h"
/**
* @brief Event-Queue used to store timed events.

View File

@ -24,7 +24,7 @@
#define JOB_QUEUE_H_
#include "../types.h"
#include "../job.h"
#include "../jobs/job.h"
/**
* @brief Job-Queue

View File

@ -25,7 +25,7 @@
#include "receiver.h"
#include "job.h"
#include "jobs/job.h"
#include "socket.h"
#include "packet.h"
#include "globals.h"