summaryrefslogtreecommitdiffstats
path: root/docs
.highlight .hll { background-color: #ffffcc } .highlight .c { color: #888888 } /* Comment */ .highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */ .highlight .k { color: #008800; font-weight: bold } /* Keyword */ .highlight .ch { color: #888888 } /* Comment.Hashbang */ .highlight .cm { color: #888888 } /* Comment.Multiline */ .highlight .cp { color: #cc0000; font-weight: bold } /* Comment.Preproc */ .highlight .cpf { color: #888888 } /* Comment.PreprocFile */ .highlight .c1 { color: #888888 } /* Comment.Single */ .highlight .cs { color: #cc0000; font-weight: bold; background-color: #fff0f0 } /* Comment.Special */ .highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */ .highlight .ge { font-style: italic } /* Generic.Emph */ .highlight .gr { color: #aa0000 } /* Generic.Error */ .highlight .gh { color: #333333 } /* Generic.Heading */ .highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */ .highlight .go { color: #888888 } /* Generic.Output */ .highlight .gp { color: #555555 } /* Generic.Prompt */ .highlight .gs { font-weight: bold } /* Generic.Strong */ .highlight .gu { color: #666666 } /* Generic.Subheading */ .highlight .gt { color: #aa0000 } /* Generic.Traceback */ .highlight .kc { color: #008800; font-weight: bold } /* Keyword.Constant */ .highlight .kd { color: #008800; font-weight: bold } /* Keyword.Declaration */ .highlight .kn { color: #008800; font-weight: bold } /* Keyword.Namespace */ .highlight .kp { color: #008800 } /* Keyword.Pseudo */ .highlight .kr { color: #008800; font-weight: bold } /* Keyword.Reserved */ .highlight .kt { color: #888888; font-weight: bold } /* Keyword.Type */ .highlight .m { color: #0000DD; font-weight: bold } /* Literal.Number */ .highlight .s { color: #dd2200; background-color: #fff0f0 } /* Literal.String */ .highlight .na { color: #336699 } /* Name.Attribute */ .highlight .nb { color: #003388 } /* Name.Builtin */ .highlight .nc { color: #bb0066; font-weight: bold } /* Name.Class */ .highlight .no { color: #003366; font-weight: bold } /* Name.Constant */ .highlight .nd { color: #555555 } /* Name.Decorator */ .highlight .ne { color: #bb0066; font-weight: bold } /* Name.Exception */ .highlight .nf { color: #0066bb; font-weight: bold } /* Name.Function */ .highlight .nl { color: #336699; font-style: italic } /* Name.Label */ .highlight .nn { color: #bb0066; font-weight: bold } /* Name.Namespace */ .highlight .py { color: #336699; font-weight: bold } /* Name.Property */ .highlight .nt { color: #bb0066; font-weight: bold } /* Name.Tag */ .highlight .nv { color: #336699 } /* Name.Variable */ .highlight .ow { color: #008800 } /* Operator.Word */ .highlight .w { color: #bbbbbb } /* Text.Whitespace */ .highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */ .highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */ .highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */ .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { 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 */
#ifndef _UAPI_ASM_SIGNAL_H
#define _UAPI_ASM_SIGNAL_H

#include <linux/types.h>

#ifndef __KERNEL__
/* Here we must cater to libcs that poke about in kernel headers.  */

#define NSIG		32
typedef unsigned long sigset_t;

#endif /* !__KERNEL__ */

#define SA_RESTORER	0x04000000 /* to get struct sigaction correct */

#include <asm-generic/signal.h>

#ifndef __KERNEL__
/* Here we must cater to libcs that poke about in kernel headers.  */

struct sigaction {
	union {
	  __sighandler_t _sa_handler;
	  void (*_sa_sigaction)(int, struct siginfo *, void *);
	} _u;
	sigset_t sa_mask;
	unsigned long sa_flags;
	void (*sa_restorer)(void);
};

#define sa_handler	_u._sa_handler
#define sa_sigaction	_u._sa_sigaction

#endif /* __KERNEL__ */

#endif /* _UAPI_ASM_SIGNAL_H */
AgeCommit message (Collapse)AuthorFilesLines
2016-04-14Fixes inventory file referenceTim Rozet1-1/+2
Change-Id: I2cd5a739a48d2f0e0fdc3b2103d3ea5e4987d6da Signed-off-by: Tim Rozet <trozet@redhat.com>
2016-04-08Documentation updates for ColoradoDan Radez8-92/+98
docs: fix filepathRyota MIBU3-2/+10 See https://wiki.opnfv.org/documentation/configguide . Change-Id: Iabbaf677896061cdd736e2662ea054df6e3e2bbc Signed-off-by: Ryota MIBU <r-mibu@cq.jp.nec.com> 2016-02-08Fixing the docs includes so that the docs get generated properlyDan Radez5-207/+211 Change-Id: Ib344c3be25b7a99316a20a69527e9cb9d86efd1d JIRA: 91 2016-02-03Fix bare metal install guide pathMichael Chapman1-1/+1 Change-Id: I88ad00b34918a343c5ae197507d6e6f047d88890 2016-02-01Updating directory structure to add files to the central docs.ChristopherPrice5-44/+46 Moved the introduction and baremetal installation instructions to /configguide. The files baremetal and introduction will be pulled into the central config guide document for release. (A little local file name juggling was required to accommodate the toolchain.) Once merged this should be pulled into the configguide. Will work on a patch for that now. Change-Id: Ie270154d0c7ac418b693ac7cf6e1444a33023266 Signed-off-by: ChristopherPrice <christopher.price@ericsson.com> 2016-01-20Restructured the installation-instruction file into indexed sub filesChristopherPrice10-539/+527 Take-two of this patch, originally merged: f479b77c4f7c0d11196e3902bb7e60ff8e34a1fe reverted: bffb8e0e27f21934a4bbb1138427f2adda6c583d Created a section based structure for the installation-instruction. It should show on the html artifact as a structured web page. We may want to move some sections to other directories to incorporate them into the release configguide. Left that for step 2... Now includes updates to the rpm spec so as not to break the build. Change-Id: I7c0d46467de668883fcd29ae7deaa20151bacdb2 Signed-off-by: ChristopherPrice <christopher.price@ericsson.com> Signed-off-by: Dan Radez <dradez@redhat.com> 2016-01-12adding doc for new settings filesDan Radez1-39/+42 Change-Id: I309ef5be4bff48ed1960512daba025d9872c9a49 2016-01-08add 'sudo' for 'opnfv-deploy' command linesRyota MIBU1-2/+2 Change-Id: I03576a041c6bfdbb288c579379b4307fa52a0283 Signed-off-by: Ryota MIBU <r-mibu@cq.jp.nec.com> 2016-01-08editorial fixes in apex docsRyota MIBU6-110/+45 - add gitignore entries - drop common files under docs/etc - fix documentation titles - fix doc8 violation (length of lines) - removal of '_sha1_' for doc tracking - removal of opnfv logo insertion Change-Id: Ib0b39704c115f896f62a8ed8ec52257fcf84d544 Signed-off-by: Ryota MIBU <r-mibu@cq.jp.nec.com> 2016-01-04Merge "adding openvswitch dependency to installation instructions"Tim Rozet1-5/+16 2015-12-21Added node role configurationViktor Tikkanen1-0/+1 If there are dedicated HW nodes for controller and compute nodes, it should be possible to define node roles in configuration files. This patch introduces "capabilities" property into pod_example_settings.yaml so as adds needed flavor definitions and overcloud deploy parameters into opnfv-deploy script. Change-Id: Ie62d3fa215aa168390d074c73fdb2fa03ecc67f5 Signed-off-by: Viktor Tikkanen <viktor.tikkanen@nokia.com> 2015-12-21adding openvswitch dependency to installation instructionsDan Radez1-5/+16 Change-Id: Ie79385905a73963ebac34ebda36a0d65539eeee7 2015-11-25adding installation instructionsDan Radez6-91/+545 JIRA: APEX-35 Change-Id: Iebbf85bd59844716961c27bb81ff7bbda2d1a1bf 2015-11-21Merge "Example as code, documentation template for sphinx build"Dan Radez4-0/+150 2015-09-18updating release notes for BramaputraDan Radez1-110/+66 Change-Id: I9881d7dd2887cb2b882d45acec4ec60c0e92a7c8 JIRA: APEX-34 Signed-off-by: Dan Radez <dradez@redhat.com> 2015-09-18migrating Arno release notes into Apex repo.Dan Radez1-0/+273 Migrating them as is so a subsequent patch can be merged with updates to it JIRA: APEX-34 Change-Id: I1651464846e108ab7e4ab8aef7eacfe5c1cc05fd Signed-off-by: Dan Radez <dradez@redhat.com> 2015-09-10Example as code, documentation template for sphinx buildAric Gardner4-0/+150 This code will be pushed to each project as an example to the devs. JIRA:RELENG-15 Change-Id: I7f0a718ffb8c318b8ab0bd5ba3fa4dd9176625a8 Signed-off-by: Aric Gardner <agardner@linuxfoundation.org>