source: rtems/cpukit/include/rpc/pmap_prot.h @ 2afb22b

5
Last change on this file since 2afb22b was 2afb22b, checked in by Chris Johns <chrisj@…>, on 12/23/17 at 07:18:56

Remove make preinstall

A speciality of the RTEMS build system was the make preinstall step. It
copied header files from arbitrary locations into the build tree. The
header files were included via the -Bsome/build/tree/path GCC command
line option.

This has at least seven problems:

  • The make preinstall step itself needs time and disk space.
  • Errors in header files show up in the build tree copy. This makes it hard for editors to open the right file to fix the error.
  • There is no clear relationship between source and build tree header files. This makes an audit of the build process difficult.
  • The visibility of all header files in the build tree makes it difficult to enforce API barriers. For example it is discouraged to use BSP-specifics in the cpukit.
  • An introduction of a new build system is difficult.
  • Include paths specified by the -B option are system headers. This may suppress warnings.
  • The parallel build had sporadic failures on some hosts.

This patch removes the make preinstall step. All installed header
files are moved to dedicated include directories in the source tree.
Let @RTEMS_CPU@ be the target architecture, e.g. arm, powerpc, sparc,
etc. Let @RTEMS_BSP_FAMILIY@ be a BSP family base directory, e.g.
erc32, imx, qoriq, etc.

The new cpukit include directories are:

  • cpukit/include
  • cpukit/score/cpu/@RTEMS_CPU@/include
  • cpukit/libnetworking

The new BSP include directories are:

  • bsps/include
  • bsps/@RTEMS_CPU@/include
  • bsps/@RTEMS_CPU@/@RTEMS_BSP_FAMILIY@/include

There are build tree include directories for generated files.

The include directory order favours the most general header file, e.g.
it is not possible to override general header files via the include path
order.

The "bootstrap -p" option was removed. The new "bootstrap -H" option
should be used to regenerate the "headers.am" files.

Update #3254.

  • Property mode set to 100644
File size: 3.5 KB
Line 
1/*
2 * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
3 * unrestricted use provided that this legend is included on all tape
4 * media and as a part of the software program in whole or part.  Users
5 * may copy or modify Sun RPC without charge, but are not authorized
6 * to license or distribute it to anyone else except as part of a product or
7 * program developed by the user.
8 *
9 * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
10 * WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
11 * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
12 *
13 * Sun RPC is provided with no support and without any obligation on the
14 * part of Sun Microsystems, Inc. to assist in its use, correction,
15 * modification or enhancement.
16 *
17 * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
18 * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
19 * OR ANY PART THEREOF.
20 *
21 * In no event will Sun Microsystems, Inc. be liable for any lost revenue
22 * or profits or other special, indirect and consequential damages, even if
23 * Sun has been advised of the possibility of such damages.
24 *
25 * Sun Microsystems, Inc.
26 * 2550 Garcia Avenue
27 * Mountain View, California  94043
28 *
29 *      from: @(#)pmap_prot.h 1.14 88/02/08 SMI
30 *      from: @(#)pmap_prot.h   2.1 88/07/29 4.0 RPCSRC
31 * $FreeBSD: src/include/rpc/pmap_prot.h,v 1.10 1999/08/27 23:45:04 peter Exp $
32 */
33
34/*
35 * pmap_prot.h
36 * Protocol for the local binder service, or pmap.
37 *
38 * Copyright (C) 1984, Sun Microsystems, Inc.
39 *
40 * The following procedures are supported by the protocol:
41 *
42 * PMAPPROC_NULL() returns ()
43 *      takes nothing, returns nothing
44 *
45 * PMAPPROC_SET(struct pmap) returns (bool_t)
46 *      TRUE is success, FALSE is failure.  Registers the tuple
47 *      [prog, vers, prot, port].
48 *
49 * PMAPPROC_UNSET(struct pmap) returns (bool_t)
50 *      TRUE is success, FALSE is failure.  Un-registers pair
51 *      [prog, vers].  prot and port are ignored.
52 *
53 * PMAPPROC_GETPORT(struct pmap) returns (long unsigned).
54 *      0 is failure.  Otherwise returns the port number where the pair
55 *      [prog, vers] is registered.  It may lie!
56 *
57 * PMAPPROC_DUMP() RETURNS (struct pmaplist *)
58 *
59 * PMAPPROC_CALLIT(unsigned, unsigned, unsigned, string<>)
60 *      RETURNS (port, string<>);
61 * usage: encapsulatedresults = PMAPPROC_CALLIT(prog, vers, proc, encapsulatedargs);
62 *      Calls the procedure on the local machine.  If it is not registered,
63 *      this procedure is quite; ie it does not return error information!!!
64 *      This procedure only is supported on rpc/udp and calls via
65 *      rpc/udp.  This routine only passes null authentication parameters.
66 *      This file has no interface to xdr routines for PMAPPROC_CALLIT.
67 *
68 * The service supports remote procedure calls on udp/ip or tcp/ip socket 111.
69 */
70
71#ifndef _RPC_PMAPPROT_H
72#define _RPC_PMAPPROT_H
73#include <sys/cdefs.h>
74#include <rpc/xdr.h>
75
76#define PMAPPORT                ((u_short)111)
77#define PMAPPROG                ((u_long)100000)
78#define PMAPVERS                ((u_long)2)
79#define PMAPVERS_PROTO          ((u_long)2)
80#define PMAPVERS_ORIG           ((u_long)1)
81#define PMAPPROC_NULL           ((u_long)0)
82#define PMAPPROC_SET            ((u_long)1)
83#define PMAPPROC_UNSET          ((u_long)2)
84#define PMAPPROC_GETPORT        ((u_long)3)
85#define PMAPPROC_DUMP           ((u_long)4)
86#define PMAPPROC_CALLIT         ((u_long)5)
87
88struct pmap {
89        long unsigned pm_prog;
90        long unsigned pm_vers;
91        long unsigned pm_prot;
92        long unsigned pm_port;
93};
94
95struct pmaplist {
96        struct pmap     pml_map;
97        struct pmaplist *pml_next;
98};
99
100__BEGIN_DECLS
101extern bool_t xdr_pmap          (XDR *, struct pmap *);
102extern bool_t xdr_pmaplist      (XDR *, struct pmaplist **);
103__END_DECLS
104
105#endif /* !_RPC_PMAPPROT_H */
Note: See TracBrowser for help on using the repository browser.