<feed xmlns='http://www.w3.org/2005/Atom'>
<title>unit.git/pkg/rpm, branch 1.9.0</title>
<subtitle>Universal Web Application Server</subtitle>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/'/>
<entry>
<title>Packages: using "pass" option in config examples.</title>
<updated>2019-04-24T17:31:00+00:00</updated>
<author>
<name>Valentin Bartenev</name>
<email>vbart@nginx.com</email>
</author>
<published>2019-04-24T17:31:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/commit/?id=094cc2fc997b86a86e5ce65c44509b19e5b89874'/>
<id>094cc2fc997b86a86e5ce65c44509b19e5b89874</id>
<content type='text'>
The "application" option has been deprecated since 1.8.0.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The "application" option has been deprecated since 1.8.0.
</pre>
</div>
</content>
</entry>
<entry>
<title>Packages: added RHEL 8 support.</title>
<updated>2019-03-26T10:22:59+00:00</updated>
<author>
<name>Andrei Belov</name>
<email>defan@nginx.com</email>
</author>
<published>2019-03-26T10:22:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/commit/?id=3d7a47c9acb1120f90225c833fd56cffeb99c2cd'/>
<id>3d7a47c9acb1120f90225c833fd56cffeb99c2cd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Packages: fixed building of unit-jsc11 rpm.</title>
<updated>2019-03-01T15:45:22+00:00</updated>
<author>
<name>Andrei Belov</name>
<email>defan@nginx.com</email>
</author>
<published>2019-03-01T15:45:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/commit/?id=557a792b33f0cc2fd0bc36c164b6d46a564712ea'/>
<id>557a792b33f0cc2fd0bc36c164b6d46a564712ea</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Packages: added JSR-340 compatibility notice to unit-jsc packages.</title>
<updated>2019-03-01T15:16:57+00:00</updated>
<author>
<name>Andrei Belov</name>
<email>defan@nginx.com</email>
</author>
<published>2019-03-01T15:16:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/commit/?id=1b0595c74c62a73741f96794651fe284e4c1ec86'/>
<id>1b0595c74c62a73741f96794651fe284e4c1ec86</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Packages: added Java trademark notice to corresponding packages.</title>
<updated>2019-03-01T13:04:41+00:00</updated>
<author>
<name>Andrei Belov</name>
<email>defan@nginx.com</email>
</author>
<published>2019-03-01T13:04:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/commit/?id=2e4853f4d7b4a1e49bc4dedd3c9cba61134fb511'/>
<id>2e4853f4d7b4a1e49bc4dedd3c9cba61134fb511</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Packages: added unit-jsc (Java Servlet Container) family.</title>
<updated>2019-02-28T15:22:15+00:00</updated>
<author>
<name>Andrei Belov</name>
<email>defan@nginx.com</email>
</author>
<published>2019-02-28T15:22:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/commit/?id=7ce6f0597543baee4275e8d66567d08f2ddaf48b'/>
<id>7ce6f0597543baee4275e8d66567d08f2ddaf48b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed violation of the strict aliasing rules in 5d0edd35c4ce.</title>
<updated>2019-02-26T14:42:20+00:00</updated>
<author>
<name>Valentin Bartenev</name>
<email>vbart@nginx.com</email>
</author>
<published>2019-02-26T14:42:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/commit/?id=ce6ce15c2042421588cd7f0635744239caf1cb31'/>
<id>ce6ce15c2042421588cd7f0635744239caf1cb31</id>
<content type='text'>
In order to reduce number of operations over rb-tree and process them in
batches simultaneously, all the timers changes are temporary stored in array.
While processing of these changes, the same memory is also used for storing
pointers to postpone timers adding.

As the same block of memory has been referenced by two different types of
pointers (nxt_timer_change_t * and nxt_timer_t **), some compilers may reorder
operations with these pointers and produce broken code.  See ticket #221 on
GitHub for a particular case.

Now the same "nxt_timer_change_t" structure is used in both cases.

Also, reverted the -fno-strict-aliasing flag, which has been introduced in
ef76227ec159 as a workaround for this issue.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In order to reduce number of operations over rb-tree and process them in
batches simultaneously, all the timers changes are temporary stored in array.
While processing of these changes, the same memory is also used for storing
pointers to postpone timers adding.

As the same block of memory has been referenced by two different types of
pointers (nxt_timer_change_t * and nxt_timer_t **), some compilers may reorder
operations with these pointers and produce broken code.  See ticket #221 on
GitHub for a particular case.

Now the same "nxt_timer_change_t" structure is used in both cases.

Also, reverted the -fno-strict-aliasing flag, which has been introduced in
ef76227ec159 as a workaround for this issue.
</pre>
</div>
</content>
</entry>
<entry>
<title>Packages: fixed packages build, broken in 00d8049418cf.</title>
<updated>2019-02-26T11:39:08+00:00</updated>
<author>
<name>Andrei Belov</name>
<email>defan@nginx.com</email>
</author>
<published>2019-02-26T11:39:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/commit/?id=79e3185f3318654285766d849c0c06d713517251'/>
<id>79e3185f3318654285766d849c0c06d713517251</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Improvement and unification of version processing in build scripts.</title>
<updated>2019-02-22T13:31:44+00:00</updated>
<author>
<name>Alexander Borisov</name>
<email>alexander.borisov@nginx.com</email>
</author>
<published>2019-02-22T13:31:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/commit/?id=608e09e9def182756e2f1650c6f3416b209fbf58'/>
<id>608e09e9def182756e2f1650c6f3416b209fbf58</id>
<content type='text'>
This also eliminates expressions that incompatible with BSD make, thus fixing
installation of Node.js module on FreeBSD (broken by dace60fc4926).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This also eliminates expressions that incompatible with BSD make, thus fixing
installation of Node.js module on FreeBSD (broken by dace60fc4926).
</pre>
</div>
</content>
</entry>
<entry>
<title>Packages: added "-fno-strict-aliasing" flag on CentOS 6 x86_64.</title>
<updated>2019-02-14T14:21:37+00:00</updated>
<author>
<name>Andrei Belov</name>
<email>defan@nginx.com</email>
</author>
<published>2019-02-14T14:21:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/commit/?id=1ba49d925031a74f1a6b6f31991562583f3271b5'/>
<id>1ba49d925031a74f1a6b6f31991562583f3271b5</id>
<content type='text'>
Closes #221 on GitHub.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #221 on GitHub.
</pre>
</div>
</content>
</entry>
</feed>
