[commtech] Provide more CSQ configs

* Rename CSQ configs to csq_<nbr_buffers>_<size_buffer>_comm.h
* Add several configs
* Default config is csq_comm.h
This commit is contained in:
Thomas Preud'homme 2012-03-20 11:07:05 +01:00
parent b47a17c6da
commit 5840b57937
4 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,8 @@
#ifndef _SPECIFIC_COMM_H_
#define _SPECIFIC_COMM_H_ 1
#define SLOTS 2 /* Value used in the article, section V.A */
#define BUF_SIZE (2 * CACHE_LINE_SIZE)
#include <csq_common_comm.h>
#endif

View File

@ -0,0 +1,8 @@
#ifndef _SPECIFIC_COMM_H_
#define _SPECIFIC_COMM_H_ 1
#define SLOTS 64 /* Value used in the article, section V.A */
#define BUF_SIZE CACHE_LINE_SIZE
#include <csq_common_comm.h>
#endif