notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine
This referral link gives you 10% off a Fastmail.com account and gives me a discount on my Fastmail account.

Get notified when packages are built

A new feature has been added. FreshPorts already tracks package built by the FreeBSD project. This information is displayed on each port page. You can now get an email when FreshPorts notices a new package is available for something on one of your watch lists. However, you must opt into that. Click on Report Subscriptions on the right, and New Package Notification box, and click on Update.

Finally, under Watch Lists, click on ABI Package Subscriptions to select your ABI (e.g. FreeBSD:14:amd64) & package set (latest/quarterly) combination for a given watch list. This is what FreshPorts will look for.

non port: devel/lockfree-malloc/distinfo

Number of commits found: 1

Sunday, 5 Aug 2012
20:51 bdrewery search for other commits by this committer
lockfree-malloc is a scalable drop-in replacement for malloc/free.

* It's thread-friendly. It supports a practically-unlimited number of
  concurrent threads, without locking or performance degradation.
* It's efficient, especially in a multi-threaded environment. Compared to
  a stock libc allocator, we see a significant performance boost.
* It does NOT fragment or leak memory, unlike a stock libc allocator.
* It wastes less memory. For small objects (less than 8kb in size), the
  overhead is around 0 bytes. (!)
* It is designed from the ground-up for 64-bit architectures.
* It is elegant. The whole codebase is only around 800 lines of fairly
  clean C++. (!)
* It fully stand-alone; it does not rely on pthreads or libc at runtime.

PR:		ports/170324
Submitted by:	Veniamin Gvozdikov <g.veniamin@googlemail.com>
Approved by:	eadler (mentor)
Original commit

Number of commits found: 1