POK(kernelpart)
portsamplingcreate.c
Go to the documentation of this file.
1 /*
2  * POK header
3  *
4  * The following file is a part of the POK project. Any modification should
5  * made according to the POK licence. You CANNOT use this file or a part of
6  * this file is this part of a file for your own project
7  *
8  * For more information on the POK licence, please see our LICENCE FILE
9  *
10  * Please follow the coding guidelines described in doc/CODING_GUIDELINES
11  *
12  * Copyright (c) 2007-2009 POK team
13  *
14  * Created by julien on Thu Jan 15 23:34:13 2009
15  */
16 
17 
18 #ifdef POK_NEEDS_PORTS_SAMPLING
19 
20 #include <errno.h>
21 #include <types.h>
22 #include <core/lockobj.h>
23 #include <middleware/port.h>
24 #include <middleware/queue.h>
25 
26 extern pok_port_t pok_ports[POK_CONFIG_NB_PORTS];
27 
28 pok_ret_t pok_port_sampling_create (char* name,
29  const pok_port_size_t size,
30  const pok_port_direction_t direction,
31  const uint64_t refresh,
32  pok_port_id_t* id)
33 {
34  pok_ret_t ret;
35  pok_lockobj_attr_t lockattr;
36 
37  ret = pok_port_create (name, size, direction, POK_PORT_KIND_SAMPLING, id);
38 
39  if (ret != POK_ERRNO_OK)
40  {
41  return ret;
42  }
43 
44  pok_ports[*id].refresh = refresh;
45  pok_ports[*id].last_receive = 0;
46 
47  lockattr.kind = POK_LOCKOBJ_KIND_EVENT;
49  ret = pok_lockobj_create (&pok_ports[*id].lock, &lockattr);
50 
51  return ret;
52 }
53 
54 #endif