[
https://issues.apache.org/jira/browse/TS-5082?focusedWorklogId=33206&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-33206
]
ASF GitHub Bot logged work on TS-5082:
--------------------------------------
Author: ASF GitHub Bot
Created on: 08/Dec/16 05:39
Start Date: 08/Dec/16 05:39
Worklog Time Spent: 10m
Work Description: Github user oknet commented on the issue:
https://github.com/apache/trafficserver/pull/1252
A function of Event System and it is defined with TS_INLINE, e.g. bool
is_read_avail_more_than()
- It is compile into net/Inline.o and it is not inline function if it is
called from Net Sub-system.
- It is compile into eventsystem/libinkevent.a and it is inline function if
it is called from Event System (internal calls).
@zwoop
Issue Time Tracking
-------------------
Worklog Id: (was: 33206)
Time Spent: 1h (was: 50m)
> Compile error: undefined reference to IOBufferReader::is_read_avail_more_than
> -----------------------------------------------------------------------------
>
> Key: TS-5082
> URL: https://issues.apache.org/jira/browse/TS-5082
> Project: Traffic Server
> Issue Type: Bug
> Components: Core
> Reporter: Oknet Xu
> Time Spent: 1h
> Remaining Estimate: 0h
>
> autoreconf -fi
> ./configure
> make
> got some error message like below:
> {code}
> CXXLD traffic_server
> undefined reference to IOBufferReader::is_read_avail_more_than(...)
> {code}
> file: P_IOBuffer.h
> {code}
> inline bool
> IOBufferReader::is_read_avail_more_than(int64_t size)
> {code}
> should be
> {code}
> TS_INLINE bool
> IOBufferReader::is_read_avail_more_than(int64_t size)
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)