Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Grpc
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
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
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
tci-gateway-module
Grpc
Commits
d35bb9ec
Commit
d35bb9ec
authored
8 years ago
by
Craig Tiller
Browse files
Options
Downloads
Patches
Plain Diff
Fix sanity
parent
66051c61
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
grpc.def
+1
-0
1 addition, 0 deletions
grpc.def
src/ruby/ext/grpc/rb_grpc_imports.generated.c
+2
-0
2 additions, 0 deletions
src/ruby/ext/grpc/rb_grpc_imports.generated.c
src/ruby/ext/grpc/rb_grpc_imports.generated.h
+3
-0
3 additions, 0 deletions
src/ruby/ext/grpc/rb_grpc_imports.generated.h
with
6 additions
and
0 deletions
grpc.def
+
1
−
0
View file @
d35bb9ec
...
@@ -83,6 +83,7 @@ EXPORTS
...
@@ -83,6 +83,7 @@ EXPORTS
grpc_channel_destroy
grpc_channel_destroy
grpc_call_cancel
grpc_call_cancel
grpc_call_cancel_with_status
grpc_call_cancel_with_status
grpc_call_ref
grpc_call_unref
grpc_call_unref
grpc_server_request_call
grpc_server_request_call
grpc_server_register_method
grpc_server_register_method
...
...
This diff is collapsed.
Click to expand it.
src/ruby/ext/grpc/rb_grpc_imports.generated.c
+
2
−
0
View file @
d35bb9ec
...
@@ -121,6 +121,7 @@ grpc_lame_client_channel_create_type grpc_lame_client_channel_create_import;
...
@@ -121,6 +121,7 @@ grpc_lame_client_channel_create_type grpc_lame_client_channel_create_import;
grpc_channel_destroy_type
grpc_channel_destroy_import
;
grpc_channel_destroy_type
grpc_channel_destroy_import
;
grpc_call_cancel_type
grpc_call_cancel_import
;
grpc_call_cancel_type
grpc_call_cancel_import
;
grpc_call_cancel_with_status_type
grpc_call_cancel_with_status_import
;
grpc_call_cancel_with_status_type
grpc_call_cancel_with_status_import
;
grpc_call_ref_type
grpc_call_ref_import
;
grpc_call_unref_type
grpc_call_unref_import
;
grpc_call_unref_type
grpc_call_unref_import
;
grpc_server_request_call_type
grpc_server_request_call_import
;
grpc_server_request_call_type
grpc_server_request_call_import
;
grpc_server_register_method_type
grpc_server_register_method_import
;
grpc_server_register_method_type
grpc_server_register_method_import
;
...
@@ -419,6 +420,7 @@ void grpc_rb_load_imports(HMODULE library) {
...
@@ -419,6 +420,7 @@ void grpc_rb_load_imports(HMODULE library) {
grpc_channel_destroy_import
=
(
grpc_channel_destroy_type
)
GetProcAddress
(
library
,
"grpc_channel_destroy"
);
grpc_channel_destroy_import
=
(
grpc_channel_destroy_type
)
GetProcAddress
(
library
,
"grpc_channel_destroy"
);
grpc_call_cancel_import
=
(
grpc_call_cancel_type
)
GetProcAddress
(
library
,
"grpc_call_cancel"
);
grpc_call_cancel_import
=
(
grpc_call_cancel_type
)
GetProcAddress
(
library
,
"grpc_call_cancel"
);
grpc_call_cancel_with_status_import
=
(
grpc_call_cancel_with_status_type
)
GetProcAddress
(
library
,
"grpc_call_cancel_with_status"
);
grpc_call_cancel_with_status_import
=
(
grpc_call_cancel_with_status_type
)
GetProcAddress
(
library
,
"grpc_call_cancel_with_status"
);
grpc_call_ref_import
=
(
grpc_call_ref_type
)
GetProcAddress
(
library
,
"grpc_call_ref"
);
grpc_call_unref_import
=
(
grpc_call_unref_type
)
GetProcAddress
(
library
,
"grpc_call_unref"
);
grpc_call_unref_import
=
(
grpc_call_unref_type
)
GetProcAddress
(
library
,
"grpc_call_unref"
);
grpc_server_request_call_import
=
(
grpc_server_request_call_type
)
GetProcAddress
(
library
,
"grpc_server_request_call"
);
grpc_server_request_call_import
=
(
grpc_server_request_call_type
)
GetProcAddress
(
library
,
"grpc_server_request_call"
);
grpc_server_register_method_import
=
(
grpc_server_register_method_type
)
GetProcAddress
(
library
,
"grpc_server_register_method"
);
grpc_server_register_method_import
=
(
grpc_server_register_method_type
)
GetProcAddress
(
library
,
"grpc_server_register_method"
);
...
...
This diff is collapsed.
Click to expand it.
src/ruby/ext/grpc/rb_grpc_imports.generated.h
+
3
−
0
View file @
d35bb9ec
...
@@ -314,6 +314,9 @@ extern grpc_call_cancel_type grpc_call_cancel_import;
...
@@ -314,6 +314,9 @@ extern grpc_call_cancel_type grpc_call_cancel_import;
typedef
grpc_call_error
(
*
grpc_call_cancel_with_status_type
)(
grpc_call
*
call
,
grpc_status_code
status
,
const
char
*
description
,
void
*
reserved
);
typedef
grpc_call_error
(
*
grpc_call_cancel_with_status_type
)(
grpc_call
*
call
,
grpc_status_code
status
,
const
char
*
description
,
void
*
reserved
);
extern
grpc_call_cancel_with_status_type
grpc_call_cancel_with_status_import
;
extern
grpc_call_cancel_with_status_type
grpc_call_cancel_with_status_import
;
#define grpc_call_cancel_with_status grpc_call_cancel_with_status_import
#define grpc_call_cancel_with_status grpc_call_cancel_with_status_import
typedef
void
(
*
grpc_call_ref_type
)(
grpc_call
*
call
);
extern
grpc_call_ref_type
grpc_call_ref_import
;
#define grpc_call_ref grpc_call_ref_import
typedef
void
(
*
grpc_call_unref_type
)(
grpc_call
*
call
);
typedef
void
(
*
grpc_call_unref_type
)(
grpc_call
*
call
);
extern
grpc_call_unref_type
grpc_call_unref_import
;
extern
grpc_call_unref_type
grpc_call_unref_import
;
#define grpc_call_unref grpc_call_unref_import
#define grpc_call_unref grpc_call_unref_import
...
...
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