Displaying 7 results from an estimated 7 matches for "onlye".
Did you mean:
only
2017 Oct 10
2
Expose aliasing information in getModRefInfo (or viceversa?)
>
> Sigh
> I should have taken the time to give a better example.
> The must-alias part is irrelevant to an example (it only requires
> read-onlyness)
>
> You said "LICM doesn't move calls, so we'd never really care about
> must-alias for promotion". I was just pointing out other things move calls
> any may want to know.
>
> If you want an example
2017 Oct 10
2
Expose aliasing information in getModRefInfo (or viceversa?)
I'm trying to understand what is the result we'd seek in the example
in D38569 (pasting here for quick access)
double f(double a)
{
double b;
double c,d;
double (*fp) (double) __attribute__ ((const));
/* Partially redundant call */
if (a < 2.0)
{
fp = sin;
c = fp (a);
}
else
{
c = 1.0;
fp = cos;
}
d = fp (a);
2004 Nov 20
1
How to encript SIP comunications?
Hello Fach,
I have used openvpn for a while and in the new release thereis a feature called "server
mode" that makes posible to have a full network of vpn links besides a single TUN/TAP
adaptor (a pure software NIC) in the server. I haven't used that feature, but I think
this is what you need. Also openvpn runs on linux, *bsd, solaris, windows, and maybe in
other OS.
Miguel
>
2017 Oct 10
4
Expose aliasing information in getModRefInfo (or viceversa?)
On Tue, Oct 10, 2017 at 1:05 PM, Hal Finkel <hfinkel at anl.gov> wrote:
>
> On 10/10/2017 02:49 PM, Alina Sbirlea wrote:
>
> Sigh
>> I should have taken the time to give a better example.
>> The must-alias part is irrelevant to an example (it only requires
>> read-onlyness)
>>
>> You said "LICM doesn't move calls, so we'd never really
2005 Oct 12
3
New Application: Broadcast
Hello,
I've released an Asterisk application under the terms of the GNU GPL. You
may find it here:
http://psg.com/~begg/projects/
A short exerpt from the README:
--
Broadcast is an Asterisk (http://www.asterisk.org) application which you
may use to send a generic message over TCP/IP to any number of computers
running software configured to listen for these types of messages. Being
written
2017 Nov 28
1
Expose aliasing information in getModRefInfo (or viceversa?)
> In your new proposal, doing & on the result of getModRef() may yield
unexpected results.
Agreed. I made the change I proposed locally, and, while it simplifies some
cases, it makes other bit-wise operations look unintuitive.
> Maybe we should just hide all that in inline functions or something and
make it an enum class
Noted, and looking into this option. Hoping a couple of static
2002 May 20
1
ext3 buffer leak/memory leak?
Hi,
I am a new ext3 user and I am having some problems. I seem to have
introduced a memory leak after adding ext3 support to the kernel. I noticed
when running top or viewing /proc/meminfo my free memory pool seems to be
decreasing while my buffers are increasing (around the same rate). I am
currently using a root partition and a /var partition. I have listed the
ext3 boot messages below.