Home - Waterfall Grid T-Grid Console Builders Recent Builds Buildslaves Changesources - JSON API - About

Builder curl-ares-solaris11-sparc Build #4092

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision779937f8400910924154afafb85dedbe95b7dffa
Got Revision779937f8400910924154afafb85dedbe95b7dffa
Changes1 change

BuildSlave:

unstable11s

Reason:

The SingleBranchScheduler scheduler named 'schedule-curl-ares-solaris11-sparc' triggered this build

Steps and Logfiles:

  1. git update ( 5 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 26 mins, 5 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 1 secs )
    1. stdio

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/curl-ares-solaris11-sparc slave
buildername curl-ares-solaris11-sparc Builder
buildnumber 4092 Build
codebase Build
got_revision 779937f8400910924154afafb85dedbe95b7dffa Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 779937f8400910924154afafb85dedbe95b7dffa Build
scheduler schedule-curl-ares-solaris11-sparc Scheduler
slavename unstable11s BuildSlave
workdir /export/home/buildbot/slave/curl-ares-solaris11-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Stefan Eissing

Timing:

StartSat Jun 21 17:22:15 2025
EndSat Jun 21 18:40:17 2025
Elapsed1 hrs, 18 mins, 1 secs

All Changes:

:

  1. Change #237253

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Sat 21 Jun 2025 17:19:11
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 779937f8400910924154afafb85dedbe95b7dffa

    Comments

    multi: add dirty bitset
    Add a bitset `dirty` to the multi handle. The presence of a transfer int
    he "dirty" set means: this transfer has something to do ASAP.
    
    "dirty" is set by multiplexing protocols like HTTP/2 and 3 when
    encountering response data for another transfer than the current one.
    "dirty" is set by protocols that want to be called.
    
    Implementation:
    
    * just an additional `uint_bset` in the multi handle
    * `Curl_multi_mark_dirty()` to add a transfer to the dirty set.
    * `multi_runsingle()` clears the dirty bit of the transfer at
       start. Without new dirty marks, this empties the set after
       al dirty transfers have been run.
    * `multi_timeout()` immediately gives the current time and
       timeout_ms == 0 when dirty transfers are present.
    * multi_event: marks all transfers tracked for a socket as dirty.
      Then marks all expired transfers as dirty. Then it runs
      all dirty transfers.
    
    With this mechanism:
    
    * Most uses of `EXPIRE_RUN_NOW` are replaced by `Curl_multi_mark_dirty()`
    * `Curl_multi_mark_dirty()` is cheaper than querying if a transfer is
      already dirty or set for timeout. There is no need to check, just do it.
    * `data->state.select_bits` is eliminated. We need no longer to
      simulate a poll event to make a transfer run.
    
    Closes #17662

    Changed files

    • lib/cf-h2-proxy.c
    • lib/connect.c
    • lib/doh.c
    • lib/easy.c
    • lib/http2.c
    • lib/imap.c
    • lib/multi.c
    • lib/multi_ev.c
    • lib/multi_ev.h
    • lib/multihandle.h
    • lib/multiif.h
    • lib/transfer.c
    • lib/urldata.h
    • lib/vquic/curl_msh3.c
    • lib/vquic/curl_ngtcp2.c
    • lib/vquic/curl_osslq.c
    • lib/vquic/curl_quiche.c
    • lib/vssh/libssh.c
    • lib/vssh/libssh2.c
    • lib/vssh/wolfssh.c