blob: 5be6d48e429eb16da5702cd392eef024c392d400 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#pragma once
#include <proto/token.h>
#include <vfs.h>
// ---- Communication channels
#define CHANNEL_BUFFER_SIZE 200 // 1000 + other channel_t fields = 1024 - epsilon
typedef struct {
fs_handle_t *a, *b;
} fs_handle_pair_t;
fs_handle_pair_t make_channel(bool blocking);
// ---- shared memory regions
fs_handle_t* make_shm(size_t size);
// ---- Tokens for sharing file descriptors between processes
#define TOKEN_LIFETIME 1500000 // in usecs
bool gen_token_for(fs_handle_t *h, token_t *tok);
fs_handle_t *use_token(token_t *tok);
bool token_eq_fun(const void* a, const void* b);
hash_t token_hash_fun(const void* t);
/* vim: set ts=4 sw=4 tw=0 noet :*/
|