Displaying 20 results from an estimated 50000 matches similar to: "R on QNX"
2006 Sep 28
1
Nonlinear fitting - reparametrization help
Hi,
I am trying to fit a function of the form:
y = A0 + A1 * exp( -0.5* ( (X - Mu1) / Sigma1 )^2 ) - A2 * exp ( -0.5*
( (X-Mu2)/Sigma2 )^2 )
i.e. a mean term (A0) + a difference between two gaussians.
The constraints are A1,A2 >0, Sigma1,Sigma2>0, and usually Sigma2>Sigma1.
The plot looks like a "Mexican Hat".
I had trouble (poor fits) fitting this function to toy data
2006 Feb 13
4
[Bug 1156] Closes connection after C-c is pressed on QNX
http://bugzilla.mindrot.org/show_bug.cgi?id=1156
Summary: Closes connection after C-c is pressed on QNX
Product: Portable OpenSSH
Version: 4.3p2
Platform: ix86
OS/Version: other
Status: NEW
Severity: normal
Priority: P2
Component: sshd
AssignedTo: bitbucket at mindrot.org
ReportedBy: kraai
2000 Sep 12
0
OpenSSH 2.2.0p1 port to QNX 4
Dear OpenSSH porting developers,
finally I succeded in porting OpenSSH to QNX 4.
To get things going I had to take over some definitions from Linux'
include files, since they are not available under QNX (e.g. the howmany
makro, NFDBITS, the lastlog structure). With this email I send a patch
with all my changes as well as the file "qnx-term.h" which I created
because IXANY and
2019 Jun 21
2
Expected behavior of lld during LTO for global symbols (Attr Internal/Common)
Thanks for the info Teresa,
Regards
M Suresh
From: Teresa Johnson <tejohnson at google.com>
Sent: Thursday, June 20, 2019 7:15 PM
To: Mani, Suresh <Suresh.Mani at amd.com>
Cc: Rui Ueyama <ruiu at google.com>; llvm-dev <llvm-dev at lists.llvm.org>
Subject: Re: [llvm-dev] Expected behavior of lld during LTO for global symbols (Attr Internal/Common)
[CAUTION: External
2005 Feb 12
2
comparing predicted sequence A'(t) to observed sequence A(t)
Hi,
I have a question that I have not been succesful in finding a definitive
answer to; and I was hoping someone here could give me some pointers to
the right place in the literature.
A. We have 4 sets of data, A(t), B(t), C(t), and D(t). Each of these
consists of a series of counts obtained in sequential time-intervals: so
for example, A(t) would be something like:
Count A(t): 25,
2006 May 26
1
DO NOT REPLY [Bug 3806] New: makedev has 3 arguments in qnx
https://bugzilla.samba.org/show_bug.cgi?id=3806
Summary: makedev has 3 arguments in qnx
Product: rsync
Version: 2.6.8
Platform: Other
OS/Version: Other
Status: NEW
Severity: normal
Priority: P3
Component: core
AssignedTo: wayned@samba.org
ReportedBy: cooke@sun.ac.za
QAContact:
2019 Jun 20
2
Expected behavior of lld during LTO for global symbols (Attr Internal/Common)
Hi Teresa,
Can you please let me know if there is any update on this issue.
Thanks
M Suresh
From: Teresa Johnson <tejohnson at google.com>
Sent: Tuesday, June 11, 2019 7:23 PM
To: Rui Ueyama <ruiu at google.com>
Cc: Mani, Suresh <Suresh.Mani at amd.com>; llvm-dev <llvm-dev at lists.llvm.org>
Subject: Re: [llvm-dev] Expected behavior of lld during LTO for global symbols
2013 Mar 13
1
Support for QNX 4.25
Hello,
I wanted to find out if your team would be willing to develop an OpenSSH
port for QNX 4.25.
We have several open source tools we would like to utilize as part of our
QNX based development environment. Mnay of them require SSH capability
which currently doesn?t exist for QNX 4.X.
Please let me know if your team would be willing to make such a port
available. I am reasonably certain
2002 Aug 05
1
Problems compiling on QNX
Hi All,
Im a newbie here, and im sorry if im repeating the question.
Im trying to compile samba 2.2.5 on QNX RTOS 6.2.0 x86pc. I am getting the following error.
Compiling printing/print_generic.c
Compiling printing/lpq_parse.c
Compiling printing/load.c
Compiling profile/profile.c
profile/profile.c: In function `profile_setup':
profile/profile.c:93: storage size of `shm_ds' isn't
2009 Jul 21
3
DO NOT REPLY [Bug 6569] New: chmod-temp-dir fails on QNX
https://bugzilla.samba.org/show_bug.cgi?id=6569
Summary: chmod-temp-dir fails on QNX
Product: rsync
Version: 3.1.0
Platform: Other
OS/Version: Windows XP
Status: NEW
Severity: normal
Priority: P3
Component: core
AssignedTo: wayned at samba.org
ReportedBy: mkraai at beckman.com
2006 Aug 31
1
Xen, Dual Core, Windows and QNX
I''m fairly new to both Xen and Linux, my boss wants me to try and get
Xen working on a new dual core running both Windows and QNX (we need to
do some real time processing). Ideally he wants Windows to be a host
(although from what I have read this isn''t possible yet?) and QNX as a
guest. I''m guessing a Linux Dom0 will be needed and then the others run
as guests. Does
2001 Jul 17
1
openssh and QNX
Hi.
I have compiled openssh on QNX RTP 6.1, "x86-pc-nto-qnx". Some things to note if anyone should want to update configure and include support for this platform:
* The enthropy device is normally /dev/random
* INTXX and other similar types are in <stdint.h>
* macro howmany, constant NFDBITS and type fd_mask need to be defined. How this can be done has been discussed earlier
2004 Jul 16
2
Can't build 3.0.4 under QNX 6.1.0
I've been trying to build Samba 3.0.4 on QNX 6.1.0.
1. I downloaded the source tarball "samba-latest.tar.gz" from a mirror
site. The downloading was done on an MS-Windows system. The tarball was
transferred to the QNX box by loading into Emacs on MS-Windows with "M-x
find-file-literally" then saving it with Emacs's ftp facility: "C-x C-w
2019 Jun 24
4
Expected behavior of lld during LTO for global symbols (Attr Internal/Common)
The direct cause of this issue is that, previously lld converted common
symbols to defined symbols before passing input files to LTO, and
after r360841 they are passed as common symbols to LTO. Making lld to work
as before is easy, as we can convert common symbols to defined symbols as
before. Here is a patch to do that, and I confirmed that that restores the
original behavior for the reported
2014 Jul 28
4
[Bug 2260] New: monitor_fdpass.c fails to compile on QNX 6.3.2
https://bugzilla.mindrot.org/show_bug.cgi?id=2260
Bug ID: 2260
Summary: monitor_fdpass.c fails to compile on QNX 6.3.2
Product: Portable OpenSSH
Version: 6.6p1
Hardware: ix86
OS: Other
Status: NEW
Severity: normal
Priority: P5
Component: Miscellaneous
Assignee: unassigned-bugs
1998 Apr 17
1
Samba and QNX
Has anybody ported samba 1.9.18p4 to QNX 4.24 ?
Airton Coelho Vieira Junior coelho@inf.ucp.br
-------------- next part --------------
HTML attachment scrubbed and removed
2019 Jun 10
2
Expected behavior of lld during LTO for global symbols (Attr Internal/Common)
Hi ,
I have an issue during LTO phase of llvm compiler which is as follows,
File t3.c
---------
#include <stdio.h>
#include <stdlib.h>
// A linked list node
struct Node {
int data;
struct Node* next;
struct Node* prev;
};
struct Node* head;
/* Given a reference (pointer to pointer) to the head of a list
and an int, inserts a new node on the front of the list. */
2019 Jun 11
3
Expected behavior of lld during LTO for global symbols (Attr Internal/Common)
Looks like this is indeed related to r360841.
In C, there are distinctions between declarations, definitions and
tentative definitions. Global variables declared with "extern" are
declarations. Global variables that don't have "extern" and have
initializers are definitions. If global variables have neither "extern" nor
initializers, they are called tentative
2007 Jul 21
10
[Bug 1343] New: Privilege separation does not work on QNX
http://bugzilla.mindrot.org/show_bug.cgi?id=1343
Summary: Privilege separation does not work on QNX
Product: Portable OpenSSH
Version: 4.6p1
Platform: Other
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: sshd
AssignedTo: bitbucket at mindrot.org
ReportedBy: kraai at
2007 Sep 19
1
sp_expire is 0 in QNX Neutrino
QNX Neutrino does not support the shadow
password database properly. Apart from
misdocumenting /etc/shadow as having 4
fields when in fact it has 5 (including
the "last changed" field), its getspnam()
fills in the sp_expire field of the spwd
structure with 0. And since by default,
shadow support is enabled and the
configure script turns on HAS_SHADOW_EXPIRE
when it finds that field,