Re: How many other renters complained and were ignored before it finally went public?
many up scale hotels already keep track of those fancy robes and no doubt they will charge you for taking it.
317 publicly visible posts • joined 24 Mar 2014
Intel has killed off scores of other server class processors : MIPS, Power PC , Sparc; at HP, IBM .. Oracle ... simply due to the incredible hardware costs of maintaining and developing new platforms . The Big Iron companies hate having to pay Intel for server chips .. but they hate even more creating new platforms, so they are test driving ARM to keep some sort of R&D spirit alive ... but in the end when the final $$ tally is done they will all resort to mass produced , sweat shop manufactured garbage from China built on Intel reference schematics .. Just keep adding NUMA sockets !
HP has driven off anyone over 45+ ; After they laid off my 60 yo director , I was demoted and moved to a group to produce paper work for vendors even though I was a principle SW engineer ; my next review has 2 sentences : "Does not meet expectations " after 24 years of excellent reviews ; I was gone 2 months later.
Libc malloc should never return NULL until you have exceeded the heap size of your process. This could happen in x86 32bit world where the malloc/process space is around 3GB ; libc malloc should sleep infinitely until a memory page is made available via virtual memory reclaim steps. An 64b process would behave the same, although the process address space is match larger. What really causes system hangs in the kernel's inability to alloc vmalloc space; that is when system calls start failing and Out of Memory process starts killing off random memory hogs.