aboutsummaryrefslogtreecommitdiffstats
path: root/src/vlibmemory/api.h
AgeCommit message (Expand)AuthorFilesLines
2019-10-25dhcp: fix crash on unicast renewal sendNeale Ranns1-0/+1
2018-10-03sock api: fix registrations and client readsFlorin Coras1-4/+2
2018-10-02PAPI: Use UNIX domain sockets instead of shared memoryOle Troan1-4/+5
2018-08-04socket api: multiple fds in one msgFlorin Coras1-4/+5
2018-01-25session: add support for memfd segmentsFlorin Coras1-0/+38
2018-01-11api: fix handlers that explicitly depend on svm queueFlorin Coras1-0/+9
2018-01-09api: refactor vlibmemoryFlorin Coras1-24/+66
2017-10-03Repair vlib API socket serverDave Barach1-0/+1
2017-07-01Refactor API message handling codeKlement Sekera1-106/+1
2017-05-03A sprinkling of const in vlibmemory/api.h and friendsNeale Ranns1-10/+10
2017-01-09Self-service garbage collection for the API message allocatorDave Barach1-0/+3
2016-12-28Reorganize source tree to use single autotools instanceDamjan Marion1-0/+163
an class="cm"> distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef included_math_h #define included_math_h #include <vppinfra/clib.h> always_inline f64 sqrt (f64 x) { return __builtin_sqrt (x); } always_inline f64 fabs (f64 x) { return __builtin_fabs (x); } #ifndef isnan #define isnan(x) __builtin_isnan(x) #endif #ifndef isinf #define isinf(x) __builtin_isinf(x) #endif #endif /* included_math_h */ /* * fd.io coding-style-patch-verification: ON * * Local Variables: * eval: (c-set-style "gnu") * End: */