2009-07-08 13:19:16 -07:00
|
|
|
/*
|
2010-02-11 10:59:47 -08:00
|
|
|
* Copyright (c) 2008, 2009, 2010 Nicira Networks.
|
2009-07-08 13:19:16 -07:00
|
|
|
*
|
2009-06-15 15:11:30 -07:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at:
|
2009-07-08 13:19:16 -07:00
|
|
|
*
|
2009-06-15 15:11:30 -07:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
2009-07-08 13:19:16 -07:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef COMPILER_H
|
|
|
|
#define COMPILER_H 1
|
|
|
|
|
2010-02-12 12:54:58 -08:00
|
|
|
#ifdef __GNUC__
|
2009-07-08 13:19:16 -07:00
|
|
|
#define NO_RETURN __attribute__((__noreturn__))
|
2010-02-11 10:59:47 -08:00
|
|
|
#define OVS_UNUSED __attribute__((__unused__))
|
2009-07-08 13:19:16 -07:00
|
|
|
#define PRINTF_FORMAT(FMT, ARG1) __attribute__((__format__(printf, FMT, ARG1)))
|
|
|
|
#define STRFTIME_FORMAT(FMT) __attribute__((__format__(__strftime__, FMT, 0)))
|
|
|
|
#define MALLOC_LIKE __attribute__((__malloc__))
|
|
|
|
#define ALWAYS_INLINE __attribute__((always_inline))
|
2009-11-04 15:11:44 -08:00
|
|
|
#define WARN_UNUSED_RESULT __attribute__((__warn_unused_result__))
|
2010-02-12 12:54:58 -08:00
|
|
|
#else
|
|
|
|
#define NO_RETURN
|
|
|
|
#define OVS_UNUSED
|
|
|
|
#define PRINTF_FORMAT(FMT, ARG1)
|
|
|
|
#define STRFTIME_FORMAT(FMT)
|
|
|
|
#define MALLOC_LIKE
|
|
|
|
#define ALWAYS_INLINE
|
2010-02-24 13:47:09 -08:00
|
|
|
#define WARN_UNUSED_RESULT
|
2010-02-12 12:54:58 -08:00
|
|
|
#endif
|
2009-07-08 13:19:16 -07:00
|
|
|
|
|
|
|
#endif /* compiler.h */
|