aboutsummaryrefslogtreecommitdiffstats
path: root/package/kernel/bpf-headers/src/include/generated
diff options
context:
space:
mode:
authorStijn Tintel <stijn@linux-ipv6.be>2022-05-09 14:55:42 +0300
committerStijn Tintel <stijn@linux-ipv6.be>2022-06-21 16:19:42 +0300
commit33e7f7c0285619c3be58ae7db5617bea9938a46a (patch)
tree6e491bc33a7bec4e7400156ea8ae5da14cfd1e77 /package/kernel/bpf-headers/src/include/generated
parent5f108050941b467f9911ef75e7ccf4401fd1d5c0 (diff)
downloadupstream-33e7f7c0285619c3be58ae7db5617bea9938a46a.tar.gz
upstream-33e7f7c0285619c3be58ae7db5617bea9938a46a.tar.bz2
upstream-33e7f7c0285619c3be58ae7db5617bea9938a46a.zip
hostapd: document ubus methods
Document the ubus methods we added to hostapd so that people don't have to read code to figure out which methods are available and what they do. Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
Diffstat (limited to 'package/kernel/bpf-headers/src/include/generated')
0 files changed, 0 insertions, 0 deletions
i { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
entity sub_ent is
end entity;

architecture a of sub_ent is
  signal sig : integer := 0;
begin
  sig <= 1 after 1 ns;
end architecture;

entity ent is
end entity;

architecture a of ent is
  signal sig : integer;
begin
  dut : entity work.sub_ent;
  sig <= << signal dut.sig : integer >>;

  monitor : process
  begin
    wait on sig;
    report to_string(sig);
  end process;
end architecture;