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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
/* -*- c++ -*- */
/*
* Copyright 2008 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
* GNU Radio is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3, or (at your option)
* any later version.
*
* GNU Radio is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef INCLUDED_GC_DECLARE_PROC_H
#define INCLUDED_GC_DECLARE_PROC_H
#include <stdint.h>
#include <gc_job_desc.h>
/*
* This is C, not C++ code...
*
* ...and is used by both PPE and SPE code
*/
__GC_BEGIN_DECLS
#define GC_PROC_DEF_SECTION ".gcell.proc_def"
typedef struct gc_proc_def {
#if defined(__SPU__)
gc_spu_proc_t proc;
#else
uint32_t proc;
#endif
char name[28];
} _AL16 gc_proc_def_t;
#if defined(__SPU__)
/*!
* \brief Tell gcell about a SPU procedure
*
* \param _proc_ pointer to function (gc_spu_proc_t)
* \param _name_ the name of the procedure ("quoted string")
*
* This macro registers the given procedure with the gcell runtime.
* From the PPE, use gc_job_manager::lookup_proc to map \p _name_ to a gc_proc_id_t
*/
#define GC_DECLARE_PROC(_proc_, _name_) \
static struct gc_proc_def \
_GCPD_ ## _proc_ __attribute__((section(GC_PROC_DEF_SECTION), used)) = \
{ _proc_, _name_ }
#endif
__GC_END_DECLS
#endif /* INCLUDED_GC_DECLARE_PROC_H */
|