Fix powerpc software sqrtf (bug 17967).
[glibc.git] / nis / rpcsvc / nis_callback.h
blob6f05728e2a23fda553f7f1a9689762cdfd29a222
1 /*
2 * Copyright (c) 2010, Oracle America, Inc.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met:
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above
11 * copyright notice, this list of conditions and the following
12 * disclaimer in the documentation and/or other materials
13 * provided with the distribution.
14 * * Neither the name of the "Oracle America, Inc." nor the names of its
15 * contributors may be used to endorse or promote products derived
16 * from this software without specific prior written permission.
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
21 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
22 * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
23 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
25 * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
27 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
28 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 #ifndef _RPCSVC_NIS_CALLBACK_H
32 #define _RPCSVC_NIS_CALLBACK_H 1
34 #include <rpc/rpc.h>
35 #include <rpcsvc/nis.h>
37 __BEGIN_DECLS
39 typedef nis_object *obj_p;
41 struct cback_data {
42 struct {
43 u_int entries_len;
44 obj_p *entries_val;
45 } entries;
47 typedef struct cback_data cback_data;
49 #define CB_PROG 100302
50 #define CB_VERS 1
52 #define CBPROC_RECEIVE 1
53 extern bool_t * cbproc_receive_1 (cback_data *, CLIENT *) __THROW;
54 extern bool_t * cbproc_receive_1_svc (cback_data *, struct svc_req *) __THROW;
56 #define CBPROC_FINISH 2
57 extern void * cbproc_finish_1 (void *, CLIENT *) __THROW;
58 extern void * cbproc_finish_1_svc (void *, struct svc_req *) __THROW;
60 #define CBPROC_ERROR 3
61 extern void * cbproc_error_1 (nis_error *, CLIENT *) __THROW;
62 extern void * cbproc_error_1_svc (nis_error *, struct svc_req *) __THROW;
63 extern int cb_prog_1_freeresult (SVCXPRT *, xdrproc_t, caddr_t) __THROW;
65 /* the xdr functions */
67 extern bool_t xdr_obj_p (XDR *, obj_p*) __THROW;
68 extern bool_t xdr_cback_data (XDR *, cback_data*) __THROW;
70 __END_DECLS
72 #endif /* !_RPCVSC_NIS_CALLBACK_H */