~hartmans/ubuntu/trusty/krb5/gss-infinite-loop

« back to all changes in this revision

Viewing changes to src/kim/lib/kim_debug_private.h

  • Committer: Package Import Robot
  • Author(s): Dmitrijs Ledkovs
  • Date: 2013-11-10 02:20:12 UTC
  • mfrom: (53.1.3 trusty-proposed)
  • Revision ID: package-import@ubuntu.com-20131110022012-b8ojkqhcxos55kln
Tags: 1.11.3+dfsg-3ubuntu2
Add alternate dependency on libverto-libevent1 as that's the package
ABI name in ubuntu.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* kim/lib/kim_debug_private.h */
2
 
/*
3
 
 * Copyright 2008 Massachusetts Institute of Technology.
4
 
 * All Rights Reserved.
5
 
 *
6
 
 * Export of this software from the United States of America may
7
 
 * require a specific license from the United States Government.
8
 
 * It is the responsibility of any person or organization contemplating
9
 
 * export to obtain such a license before exporting.
10
 
 *
11
 
 * WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
12
 
 * distribute this software and its documentation for any purpose and
13
 
 * without fee is hereby granted, provided that the above copyright
14
 
 * notice appear in all copies and that both that copyright notice and
15
 
 * this permission notice appear in supporting documentation, and that
16
 
 * the name of M.I.T. not be used in advertising or publicity pertaining
17
 
 * to distribution of the software without specific, written prior
18
 
 * permission.  Furthermore if you modify this software you must label
19
 
 * your software as modified software and not distribute it in such a
20
 
 * fashion that it might be confused with the original M.I.T. software.
21
 
 * M.I.T. makes no representations about the suitability of
22
 
 * this software for any purpose.  It is provided "as is" without express
23
 
 * or implied warranty.
24
 
 */
25
 
 
26
 
#define kim_debug_printf(format, ...) __kim_debug_printf(__FUNCTION__, format, ## __VA_ARGS__)
27
 
void __kim_debug_printf (kim_string in_function,
28
 
                         kim_string in_format,
29
 
                         ...);
30
 
 
31
 
kim_error _check_error (kim_error  in_err,
32
 
                        kim_string in_function,
33
 
                        kim_string in_file,
34
 
                        int          in_line);
35
 
#define check_error(err) _check_error(err, __FUNCTION__, __FILE__, __LINE__)
36
 
 
37
 
void kim_os_debug_print (kim_string in_string);