• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* Test a array of pointer definition as struct member
2  * gcc -gctf -c test-array-of-pointers.c -o test-array-of-pointer.o
3  */
4 struct task {
5  struct css_set *s;
6 };
7 
8 struct state {
9  struct cgroup *cg;
10 };
11 
12 struct css_set {
13  struct state *s0[4];
14 };
15 
16 struct cgroup {
17  struct state *s1[4];
18 };
19 
20 struct task *t;
21