Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
T
tarantool
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
core
tarantool
Commits
676ccceb
Commit
676ccceb
authored
9 years ago
by
Konstantin Osipov
Browse files
Options
Downloads
Patches
Plain Diff
arm: box/lua/net_box.cc -> box/lua/net_box.c
parent
a39900d5
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/box/CMakeLists.txt
+1
-1
1 addition, 1 deletion
src/box/CMakeLists.txt
src/box/lua/net_box.c
+0
-1
0 additions, 1 deletion
src/box/lua/net_box.c
src/box/lua/tuple.h
+8
-8
8 additions, 8 deletions
src/box/lua/tuple.h
with
9 additions
and
10 deletions
src/box/CMakeLists.txt
+
1
−
1
View file @
676ccceb
...
...
@@ -70,7 +70,7 @@ add_library(box
lua/sophia.cc
lua/error.cc
lua/session.cc
lua/net_box.c
c
lua/net_box.c
${
bin_sources
}
)
target_link_libraries
(
box
${
sophia_lib
}
)
This diff is collapsed.
Click to expand it.
src/box/lua/net_box.c
c
→
src/box/lua/net_box.c
+
0
−
1
View file @
676ccceb
...
...
@@ -35,7 +35,6 @@
#include
"box/iproto_constants.h"
#include
"box/lua/tuple.h"
/* luamp_convert_tuple() / luamp_convert_key() */
#include
"box/lua/error.h"
#include
"lua/msgpack.h"
#include
<msgpuck/msgpuck.h>
/* mp_store_u32() */
...
...
This diff is collapsed.
Click to expand it.
src/box/lua/tuple.h
+
8
−
8
View file @
676ccceb
...
...
@@ -30,12 +30,16 @@
* THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#include
<box/tuple.h>
#include
<stddef.h>
#if defined(__cplusplus)
extern
"C"
{
#endif
struct
lua_State
;
struct
txn
;
struct
tuple
;
struct
mpstream
;
struct
luaL_serializer
;
/**
* Push tuple on lua stack
...
...
@@ -44,7 +48,7 @@ void
lbox_pushtuple
(
struct
lua_State
*
L
,
struct
tuple
*
tuple
);
static
inline
int
lbox_pushtupleornil
(
lua_State
*
L
,
box_
tuple
_t
*
tuple
)
lbox_pushtupleornil
(
struct
lua_State
*
L
,
struct
tuple
*
tuple
)
{
if
(
tuple
==
NULL
)
return
0
;
...
...
@@ -67,15 +71,11 @@ luamp_encode_tuple(struct lua_State *L, struct luaL_serializer *cfg,
struct
mpstream
*
stream
,
int
index
);
char
*
lbox_encode_tuple_on_gc
(
lua_State
*
L
,
int
idx
,
size_t
*
p_len
);
lbox_encode_tuple_on_gc
(
struct
lua_State
*
L
,
int
idx
,
size_t
*
p_len
);
void
box_lua_tuple_init
(
struct
lua_State
*
L
);
#if defined(__cplusplus)
extern
"C"
{
#endif
struct
tuple
*
boxffi_tuple_update
(
struct
tuple
*
tuple
,
const
char
*
expr
,
const
char
*
expr_end
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment