~ubuntu-branches/ubuntu/vivid/cctools/vivid

« back to all changes in this revision

Viewing changes to parrot/src/pfs_channel.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Hanke
  • Date: 2011-05-07 09:05:00 UTC
  • Revision ID: james.westby@ubuntu.com-20110507090500-lqpmdtwndor6e7os
Tags: upstream-3.3.2
ImportĀ upstreamĀ versionĀ 3.3.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
Copyright (C) 2003-2004 Douglas Thain and the University of Wisconsin
 
3
Copyright (C) 2005- The University of Notre Dame
 
4
This software is distributed under the GNU General Public License.
 
5
See the file COPYING for details.
 
6
*/
 
7
 
 
8
#ifndef PFS_CHANNEL_H
 
9
#define PFS_CHANNEL_H
 
10
 
 
11
#include "pfs_types.h"
 
12
 
 
13
#ifdef __cplusplus
 
14
extern "C" {
 
15
#endif
 
16
 
 
17
int    pfs_channel_init( pfs_size_t size );
 
18
 
 
19
char * pfs_channel_base();
 
20
int    pfs_channel_fd();
 
21
 
 
22
int    pfs_channel_alloc( pfs_size_t length, pfs_size_t *start );
 
23
void   pfs_channel_free( pfs_size_t start );
 
24
 
 
25
#ifdef __cplusplus
 
26
}
 
27
#endif
 
28
 
 
29
#endif