Displaying 20 results from an estimated 100 matches similar to: "Squid memory leaks in -stable using libc malloc"
2020 Jun 07
3
[External] Re: use of the tcltk package crashes R 4.0.1 for Windows
On Sun, Jun 7, 2020 at 5:53 PM <luke-tierney at uiowa.edu> wrote:
>
> On Sun, 7 Jun 2020, peter dalgaard wrote:
>
> > So this wasn't tested for a month?
> >
> > Anyways, Free() is just free() with a check that we're not freeing a null pointer, followed by setting the pointer to NULL. At that point of tcltk.c, we have
> >
> > for (objc = i = 0;
2020 Jun 07
4
[External] Re: use of the tcltk package crashes R 4.0.1 for Windows
I've committed the change to use Free instead of free in tcltk.c and
sys-std.c (r78652 for R-devel, r78653 for R-patched).
We might consider either moving Calloc/Free out of the Windows
remapping or moving the remapping into header files so everything
seeing our header files uses our calloc/free. Either would be less
brittle that the current status.
Best,
luke
On Sun, 7 Jun 2020, peter
2001 Apr 08
1
Compiling vorbis-tools on FreeBSD
Hi there,
I'm having some problems compiling vorbis-tools on FreeBSD 4.2-STABLE.
My configure line is
./configure --with-ogg-prefix=/usr/local \
--with-vorbis-prefix=/usr/local \
--with-ao-prefix=/usr/local --prefix=/usr/local
I have to put the --prefixes in because I don't know how to tell the
compiler to look in /usr/local/include instead of just in
/usr/include.
Without the
2010 Oct 30
2
Conquer Online 2.0
Hi guys!
I'm trying to install Conquer Online (http://co.91.com/). And it's not running, I already have played this game using Wine but it was about year ago I think. Here are details what I've tried:
Code:
OS: Arch Linux 32-bit
Kernel: 2.6.35
Wine: 1.3.6
Mesa: 7.8.2-3
xf86-video-intel: 2.12.0-3
Compiz: switched off
Code:
[tjr at redqueen ~]$ lspci -v -s 00:02
00:02.0 VGA
2020 Jun 07
0
[External] Re: use of the tcltk package crashes R 4.0.1 for Windows
> On 7 Jun 2020, at 18:59 , Jeroen Ooms <jeroenooms at gmail.com> wrote:
>
> On Sun, Jun 7, 2020 at 5:53 PM <luke-tierney at uiowa.edu> wrote:
>>
>> On Sun, 7 Jun 2020, peter dalgaard wrote:
>>
>>> So this wasn't tested for a month?
>>>
>>> Anyways, Free() is just free() with a check that we're not freeing a null
2020 Jun 07
0
[External] use of the tcltk package crashes R 4.0.1 for Windows
Ah, I see it now:
The remapping of free() to Rm_free() and calloc() to Rm_calloc() happens in memory.c, but not in tcltk.c; the macro Calloc in R_ext/RS.h maps to a call to R_chk_alloc which is defined in memory.h; RS.h is included in tcltk.c, so tcltk.c winds up calling Rm_calloc() via Calloc(), but then the NON-remapped free(), and the walls come tumbling down.
If the "#if
2007 Aug 10
1
TRANSEPARENT PROXY WITH SQUID 2.6
Hi,
I am running squid as a TRANSEPARENT PROXY WITH SQUID 2.5 on CENTOS 4.5.
Pls see below for squid.con file.
http_port 3128
cache_mem 64 MB
cache_dir ufs /var/spool/squid 100 16 256
cache_access_log /var/log/squid/access.log
cache_log /var/log/squid/cache.log
cache_store_log /var/log/squid/store.log
# INSERT YOUR OWN RULE(S) HERE TO ALLOW ACCESS FROM YOUR CLIENTS
# Example rule
2012 Oct 03
1
squid cache question
Hi Friends,
Same question has been asked on the Squid mailing list but so far no reply
on the mailing list so posting it here also.
We are trying to cache some files from apple.com like .dmg, .pkg,
.ipa etc.. so that local clients can fetch the data from the cache.
The problem we are facing is that we have download restrictions for
every client to 25 MB during work hours except for a particular
2008 Feb 12
0
[LLVMdev] GC heap implementation
I'd like to share some code with anyone who is interested.
A while back I started working on the problem of implementing a garbage
collector using the LLVM primitives. While I managed to accomplish a
fair bit in this direction, I eventually realized that it was
distracting me from my main goal, which is implementing a compiler for a
strongly-typed language of my own design. In other
2015 Mar 06
2
Squid on CentOS 7: few questions
Hi,
I recently migrated my office's server from Slackware64 14.1 to CentOS
7. Right now I'm in the process of configuring the Squid web proxy. I
edited the default /etc/squid/squid.conf, and here's what I have so far:
--8<--------------------------------------------------
# /etc/squid/squid.conf
# Nom d'h?te du serveur Squid
visible_hostname amandine.microlinux.lan
#
2020 Jul 02
6
RFC: Replacing the default CRT allocator on Windows
Hello,
I was wondering how folks were feeling about replacing the default Windows CRT allocator in Clang, LLD and other LLVM tools possibly.
The CRT heap allocator on Windows doesn't scale well on large core count machines. Any multi-threaded workload in LLVM that allocates often is impacted by this. As a result, link times with ThinLTO are extremely slow on Windows. We're observing
2007 Feb 09
1
trouble https multiple uplinks... how?
hello, my name is Denny. I am new in this list.
I am trying use multiple uplinks as describe in the lartc
documentation (http://lartc.org/howto/lartc.rpdb.multiple-links.html)
with squid transparent proxy in my gateway server.
let me draw the configuration :
/-----------------
-----DSL1-----| \
|Transparent proxy |----Local network
-----DSL2-----|
2018 Mar 09
3
SELinux breaks Squid's ssl_crtd helper
Hi,
I've setup a transparent HTTP+HTTPS proxy on my server running CentOS 7,
using Squid. Here's my configuration file.
--8<----------------------------------------------------------------
# /etc/squid/squid.conf
# D?finitions
acl localnet src 192.168.2.0/24
acl SSL_ports port 443
acl Safe_ports port 80 # http
acl Safe_ports port 21 # ftp
acl Safe_ports port
2010 Oct 03
4
[LLVMdev] JavaScript Backend
Hi all,
Over the past couple weeks, I've been putting together a JavaScript
backend for LLVM. At this point, I believe I've got reasonable
implementations for all the instructions, primitives and derived
types. I haven't gotten around to most of the intrinsics but I thought
it would be a good idea to start getting some feedback before going
much further. If anyone has the time and
2006 Mar 20
16
Swap size
Hi All,
This is out of the topic question, but I''m hoping that you can help me. If for
example I''m going to install a Fedora 4 64-bit with 8 to 12 Gig of physical
memory, how much swap file of directory do I need to create?
Thank you very much,
Wennie
2020 Jul 30
1
ntlm authentication issues
Hi,
I set up Squid 4.6 on Debian 10 and I'm having problems with browser
authentication on a Windows station.
I did the tests on the command line and apparently it's OK.
root at proxy:/etc/squid/acls# /usr/bin/ntlm_auth
--helper-protocol=squid-2.5-basic
Registered MSG_REQ_POOL_USAGE
Registered MSG_REQ_DMALLOC_MARK and LOG_CHANGED
lp_load_ex: refreshing parameters
Initialising global
2004 May 07
0
Fwd: [Re: cvs commit: src/sys/vm vm_map.c]
Hello,
FYI:
A FreeBSD user suggested that this issue requires a security advisory.
The issue has been public for some time, but currently, FreeBSD does not
issue advisories for local denial-of-service issues. It is expected
that this bug will soon be fixed in FreeBSD 4.x (it is already fixed
in FreeBSD 5.x, as you can see below).
Cheers,
--
Jacques Vidrine <nectar@freebsd.org>
-----
2003 Jan 09
4
Slow performance with lots of files in one directory
Hello,
I've got performance problems with copying small files over to a Samba
share in a directory that has lots of small files (10000 to 20000
files). It takes too long time to copy new files (they drip in at a fast
pace), and smbd eats a lot of CPU time.
Is there any way to make Samba run faster in this situation?
Cheers,
--
Anders Nordby
Aftenposten AS, Systemteknisk avd.
Tlf.: +47
2013 Oct 02
2
Problem with squid+ntlm+samba
Hello,
I'm having a little problem after logging into domain via samba, after a few minutes the squid no longer authenticates the users through single sign on and keeps asking for authentication in the browser without stopping.
below is my settings and error logs.
smb.conf
[global]workgroup = SALEnetbios name = utmadmserver string = PROXY SERVERload printers = nolog file =
2020 Jun 07
5
use of the tcltk package crashes R 4.0.1 for Windows
So this wasn't tested for a month?
Anyways, Free() is just free() with a check that we're not freeing a null pointer, followed by setting the pointer to NULL. At that point of tcltk.c, we have
for (objc = i = 0; i < length(avec); i++){
const char *s;
char *tmp;
if (!isNull(nm) && strlen(s = translateChar(STRING_ELT(nm, i)))){
// tmp =