diff options
author | Tom Callaway <spotrh@gmail.com> | 2020-09-11 05:15:43 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-11 10:15:43 +0100 |
commit | 83f682385543d949e4ee5e1271a96beddaa9a23b (patch) | |
tree | 849e76efe41e23089f5410d7f0b935232e01f15e /lib/fuse.c | |
parent | 86f40b858487ca218906f3306e5ec839d926f647 (diff) | |
download | libfuse-83f682385543d949e4ee5e1271a96beddaa9a23b.tar.gz |
Implement GCC 10 style symbol versioning (#545)
Diffstat (limited to 'lib/fuse.c')
-rwxr-xr-x | lib/fuse.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -4569,7 +4569,7 @@ int fuse_loop(struct fuse *f) return fuse_session_loop(f->se); } -FUSE_SYMVER(".symver fuse_loop_mt_32,fuse_loop_mt@@FUSE_3.2"); +FUSE_SYMVER("fuse_loop_mt_32", "fuse_loop_mt@@FUSE_3.2") int fuse_loop_mt_32(struct fuse *f, struct fuse_loop_config *config) { if (f == NULL) @@ -4585,7 +4585,7 @@ int fuse_loop_mt_32(struct fuse *f, struct fuse_loop_config *config) } int fuse_loop_mt_31(struct fuse *f, int clone_fd); -FUSE_SYMVER(".symver fuse_loop_mt_31,fuse_loop_mt@FUSE_3.0"); +FUSE_SYMVER("fuse_loop_mt_31", "fuse_loop_mt@FUSE_3.0") int fuse_loop_mt_31(struct fuse *f, int clone_fd) { struct fuse_loop_config config; @@ -4870,7 +4870,7 @@ void fuse_stop_cleanup_thread(struct fuse *f) } -FUSE_SYMVER(".symver fuse_new_31,fuse_new@@FUSE_3.1"); +FUSE_SYMVER("fuse_new_31", "fuse_new@@FUSE_3.1") struct fuse *fuse_new_31(struct fuse_args *args, const struct fuse_operations *op, size_t op_size, void *user_data) @@ -5024,7 +5024,7 @@ out: /* Emulates 3.0-style fuse_new(), which processes --help */ struct fuse *fuse_new_30(struct fuse_args *args, const struct fuse_operations *op, size_t op_size, void *private_data); -FUSE_SYMVER(".symver fuse_new_30,fuse_new@FUSE_3.0"); +FUSE_SYMVER("fuse_new_30", "fuse_new@FUSE_3.0") struct fuse *fuse_new_30(struct fuse_args *args, const struct fuse_operations *op, size_t op_size, void *user_data) |