From: Serge Petrenko <sergepetrenko@tarantool.org>
To: Vladislav Shpilevoy <v.shpilevoy@tarantool.org>
Cc: tml <tarantool-patches@dev.tarantool.org>
Subject: Re: [Tarantool-patches] [PATCH 2/4] uuid: expose additional from_string constructors
Date: Sat, 11 Apr 2020 16:35:52 +0300 [thread overview]
Message-ID: <68B5890F-67EF-489D-9255-892D594BD5F7@tarantool.org> (raw)
In-Reply-To: <2b3e67d6-ce8b-2c52-b9c9-6ea5f5f666ae@tarantool.org>
> 10 апр. 2020 г., в 19:56, Vladislav Shpilevoy <v.shpilevoy@tarantool.org> написал(а):
>
> Hi! Thanks for the fixes!
Thanks for the reivew!
>
>>> 6 апр. 2020 г., в 00:22, Vladislav Shpilevoy <v.shpilevoy@tarantool.org> написал(а):
>>>
>>> Thanks for the patch!
>>>
>>>> diff --git a/src/lib/uuid/tt_uuid.c b/src/lib/uuid/tt_uuid.c
>>>> index 1bd2e2cfe..94a0b15bb 100644
>>>> --- a/src/lib/uuid/tt_uuid.c
>>>> +++ b/src/lib/uuid/tt_uuid.c
>>>> @@ -65,6 +65,15 @@ tt_uuid_create(struct tt_uuid *uu)
>>>> }
>>>> #endif
>>>>
>>>> +extern inline int
>>>
>>> 'inline' modifier won't change anything. The function body is
>>> not visible anyway.
>>
>> Not sure about that.
>> What about other functions?
>>
>> ```
>> extern inline int
>> tt_uuid_from_string(const char *in, struct tt_uuid *uu);
>> ```
>>
>> I’m still not sure what ‘extern inline’ does, but I googled a stackoverflow
>> question discussing it:
>> https://stackoverflow.com/questions/216510/what-does-extern-inline-do
>
> From what I understood by the link above and here: http://m68hc11.serveftp.org/inline-1.php
> it looks like 'extern inline' does not make any sense for function
> declaration. It should be used only for function definition in a
> header file.
Here’s what I’ve found:
https://www.greenend.org.uk/rjk/tech/inline.html
```
A C99 model. Use inline in a common header, and provide definitions in a .c file somewhere, via extern declarations. For instance, in the header file:
inline int max(int a, int b) {
return a > b ? a : b;
}
...and in exactly one source file:
#include "header.h"
extern int max(int a, int b);
```
So, AFAIU, if the compiler chooses to not inline the function, `extern inline`
will make it generate the object code for the function only in `tt_uuid.c.o`.
As I understood, the same effect can be reached by omitting `extern inline`,
and leaving only.
```
int
tt_uuid_validate(...
```
But let’s stick with `extern inline` for consistency with other declarations in tt_uuid.c
--
Serge Petrenko
sergepetrenko@tarantool.org
next prev parent reply other threads:[~2020-04-11 13:35 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-04-03 23:02 [Tarantool-patches] [PATCH 0/4] introduce indices over UUID Serge Petrenko
2020-04-03 23:02 ` [Tarantool-patches] [PATCH 1/4] decimal: fix comment typo Serge Petrenko
2020-04-05 21:22 ` Vladislav Shpilevoy
2020-04-03 23:02 ` [Tarantool-patches] [PATCH 2/4] uuid: expose additional from_string constructors Serge Petrenko
2020-04-05 21:22 ` Vladislav Shpilevoy
2020-04-09 23:46 ` Serge Petrenko
2020-04-10 16:56 ` Vladislav Shpilevoy
2020-04-11 13:35 ` Serge Petrenko [this message]
2020-04-03 23:02 ` [Tarantool-patches] [PATCH 3/4] box: add MsgPack encoding/decoding for UUID Serge Petrenko
2020-04-05 21:26 ` Vladislav Shpilevoy
2020-04-09 23:46 ` Serge Petrenko
2020-04-03 23:02 ` [Tarantool-patches] [PATCH 4/4] box: introduce indices by UUID Serge Petrenko
2020-04-05 21:29 ` Vladislav Shpilevoy
2020-04-09 23:46 ` Serge Petrenko
2020-04-10 16:56 ` Vladislav Shpilevoy
2020-04-05 21:21 ` [Tarantool-patches] [PATCH 0/4] introduce indices over UUID Vladislav Shpilevoy
2020-04-09 23:46 ` Serge Petrenko
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=68B5890F-67EF-489D-9255-892D594BD5F7@tarantool.org \
--to=sergepetrenko@tarantool.org \
--cc=tarantool-patches@dev.tarantool.org \
--cc=v.shpilevoy@tarantool.org \
--subject='Re: [Tarantool-patches] [PATCH 2/4] uuid: expose additional from_string constructors' \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox