diff options
author | Max Romanov <max.romanov@nginx.com> | 2017-06-23 19:20:08 +0300 |
---|---|---|
committer | Max Romanov <max.romanov@nginx.com> | 2017-06-23 19:20:08 +0300 |
commit | 4a1b59c27a8e85fc3b03c420fbc1642ce52e96cf (patch) | |
tree | c72ab253541c53dd918afc86973192416078fceb /src/nginext/nxt_go_array.h | |
parent | 5a43bd0bfd1eaa60dede7beb3206a53e8d008fa4 (diff) | |
download | unit-4a1b59c27a8e85fc3b03c420fbc1642ce52e96cf.tar.gz unit-4a1b59c27a8e85fc3b03c420fbc1642ce52e96cf.tar.bz2 |
External Go app request processing.
Diffstat (limited to '')
-rw-r--r-- | src/nginext/nxt_go_array.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/src/nginext/nxt_go_array.h b/src/nginext/nxt_go_array.h new file mode 100644 index 00000000..0c3ba336 --- /dev/null +++ b/src/nginext/nxt_go_array.h @@ -0,0 +1,36 @@ + +/* + * Copyright (C) Max Romanov + * Copyright (C) NGINX, Inc. + */ + +#ifndef _NXT_GO_ARRAY_H_INCLUDED_ +#define _NXT_GO_ARRAY_H_INCLUDED_ + + +#include <nxt_array.h> + +void nxt_go_array_init(nxt_array_t *array, nxt_uint_t n, size_t size); + +void *nxt_go_array_add(nxt_array_t *array); + +nxt_inline void * +nxt_go_array_zero_add(nxt_array_t *array) +{ + void *p; + + p = nxt_go_array_add(array); + + if (nxt_fast_path(p != NULL)) { + nxt_memzero(p, array->size); + } + + return p; +} + +#define \ +nxt_go_array_at(array, n) \ + ((void *) ((char *) (array)->elts + (array)->size * (n))) + + +#endif /* _NXT_GO_ARRAY_H_INCLUDED_ */ |