Skip to content
Snippets Groups Projects
Commit 2e808090 authored by tewk's avatar tewk
Browse files

Added header file

parent b0d2a727
No related branches found
No related tags found
No related merge requests found
......@@ -3,20 +3,12 @@
#include <src/common/xmalloc.h>
#include <src/common/slurm_errno.h>
#include <src/slurmd/circular_buffer.h>
#define INITIAL_BUFFER_SIZE 8192
#define INCREMENTAL_BUFFER_SIZE 8192
#define MAX_BUFFER_SIZE ( ( 8192 * 10 ) )
typedef struct circular_buffer
{
char * buffer ; /* buffer pointer - this never changes except during allocate and deallocate */
char * start ; /* buffer pointer copy - this never changes except during allocate and deallocate , but it is used in a lot of arithmetic hence the paranoia copy */
unsigned int buf_size ; /* buffer size - this never changes except during allocate and deallocate */
unsigned int read_size ; /* buffer size that can be read */
unsigned int write_size ; /* buffer size that can be written */
char * begin ; /* beginning of the used portion of the buffer */
char * end ; /* end of the used portion of the buffer */
char * tail ; /* one char past the last char of the buffer */
} circular_buffer_t ;
static int assert_checks ( circular_buffer_t * buf ) ;
int init_cir_buf ( circular_buffer_t ** buf_ptr )
......
#ifndef _CIRCULAR_BUFFER_H
#define _CIRCULAR_BUFFER_H
typedef struct circular_buffer
{
char * buffer ; /* buffer pointer - this never changes except during allocate and deallocate */
char * start ; /* buffer pointer copy - this never changes except during allocate and deallocate , but it is used in a lot of arithmetic hence the paranoia copy */
unsigned int buf_size ; /* buffer size - this never changes except during allocate and deallocate */
unsigned int read_size ; /* buffer size that can be read */
unsigned int write_size ; /* buffer size that can be written */
char * begin ; /* beginning of the used portion of the buffer */
char * end ; /* end of the used portion of the buffer */
char * tail ; /* one char past the last char of the buffer */
} circular_buffer_t ;
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment