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
cc919832
Commit
cc919832
authored
7 years ago
by
Craig Tiller
Browse files
Options
Downloads
Patches
Plain Diff
Fix sanity
parent
5cb685f0
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
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 @
cc919832
...
...
@@ -232,6 +232,7 @@ EXPORTS
gpr_histogram_merge_contents
gpr_join_host_port
gpr_split_host_port
gpr_log_severity_string
gpr_log
gpr_log_message
gpr_set_log_verbosity
...
...
This diff is collapsed.
Click to expand it.
src/ruby/ext/grpc/rb_grpc_imports.generated.c
+
2
−
0
View file @
cc919832
...
...
@@ -270,6 +270,7 @@ gpr_histogram_get_contents_type gpr_histogram_get_contents_import;
gpr_histogram_merge_contents_type
gpr_histogram_merge_contents_import
;
gpr_join_host_port_type
gpr_join_host_port_import
;
gpr_split_host_port_type
gpr_split_host_port_import
;
gpr_log_severity_string_type
gpr_log_severity_string_import
;
gpr_log_type
gpr_log_import
;
gpr_log_message_type
gpr_log_message_import
;
gpr_set_log_verbosity_type
gpr_set_log_verbosity_import
;
...
...
@@ -571,6 +572,7 @@ void grpc_rb_load_imports(HMODULE library) {
gpr_histogram_merge_contents_import
=
(
gpr_histogram_merge_contents_type
)
GetProcAddress
(
library
,
"gpr_histogram_merge_contents"
);
gpr_join_host_port_import
=
(
gpr_join_host_port_type
)
GetProcAddress
(
library
,
"gpr_join_host_port"
);
gpr_split_host_port_import
=
(
gpr_split_host_port_type
)
GetProcAddress
(
library
,
"gpr_split_host_port"
);
gpr_log_severity_string_import
=
(
gpr_log_severity_string_type
)
GetProcAddress
(
library
,
"gpr_log_severity_string"
);
gpr_log_import
=
(
gpr_log_type
)
GetProcAddress
(
library
,
"gpr_log"
);
gpr_log_message_import
=
(
gpr_log_message_type
)
GetProcAddress
(
library
,
"gpr_log_message"
);
gpr_set_log_verbosity_import
=
(
gpr_set_log_verbosity_type
)
GetProcAddress
(
library
,
"gpr_set_log_verbosity"
);
...
...
This diff is collapsed.
Click to expand it.
src/ruby/ext/grpc/rb_grpc_imports.generated.h
+
3
−
0
View file @
cc919832
...
...
@@ -761,6 +761,9 @@ extern gpr_join_host_port_type gpr_join_host_port_import;
typedef
int
(
*
gpr_split_host_port_type
)(
const
char
*
name
,
char
**
host
,
char
**
port
);
extern
gpr_split_host_port_type
gpr_split_host_port_import
;
#define gpr_split_host_port gpr_split_host_port_import
typedef
const
char
*
(
*
gpr_log_severity_string_type
)(
gpr_log_severity
severity
);
extern
gpr_log_severity_string_type
gpr_log_severity_string_import
;
#define gpr_log_severity_string gpr_log_severity_string_import
typedef
void
(
*
gpr_log_type
)(
const
char
*
file
,
int
line
,
gpr_log_severity
severity
,
const
char
*
format
,
...)
GPR_PRINT_FORMAT_CHECK
(
4
,
5
);
extern
gpr_log_type
gpr_log_import
;
#define gpr_log gpr_log_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