From owner-freebsd-emulation@FreeBSD.ORG Tue Jul 31 13:31:02 2007 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D32D616A419 for ; Tue, 31 Jul 2007 13:31:02 +0000 (UTC) (envelope-from xpahos@gmail.com) Received: from wa-out-1112.google.com (wa-out-1112.google.com [209.85.146.181]) by mx1.freebsd.org (Postfix) with ESMTP id A0B0F13C483 for ; Tue, 31 Jul 2007 13:31:02 +0000 (UTC) (envelope-from xpahos@gmail.com) Received: by wa-out-1112.google.com with SMTP id k17so2007832waf for ; Tue, 31 Jul 2007 06:31:01 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=I0XQ1wnIfAoLblj+yvD9IP0lGll3YBuLEvwoCeajBxz0nD3dQF3gzcYGHiJL3B7S6+zzE8SnII0Yya8nhtQYGviduv9zFqbcXwf1eaAK6W2ns/r75/YV5yzJAfqQ2eOQu+eGeZn6InehuqbU3npLPadFOcva3W5mR6qqAK4A8O8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=mdtgeDZ1oEYAf3QlEaqHVWEQbnzljCLRXkitweLj+i8dBbWc9NDS6ZwkwLenExha4ZmwysRUMx9lRtCGJTf+pKk2Yppzj6986PQ0i7V+peI79eszvAa/dVHAGuXt5qJnPcXsfqRzvckK9a+AGBGspJT4d79c695lijaA2zUmplM= Received: by 10.114.89.1 with SMTP id m1mr6685396wab.1185887164309; Tue, 31 Jul 2007 06:06:04 -0700 (PDT) Received: by 10.114.154.15 with HTTP; Tue, 31 Jul 2007 06:06:04 -0700 (PDT) Message-ID: <789c35740707310606x77de9md34b2e901e9f81b1@mail.gmail.com> Date: Tue, 31 Jul 2007 17:06:04 +0400 From: "Gryanko Alexandr" To: freebsd-emulation@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: Wine 0.9.42 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Jul 2007 13:31:02 -0000 Hello, all. Can somebody give me patched files(thr.h, kern_thr.c, syscalls.master) ? As I understood, patched kern_thr will be looked as this ... thr_kill2(struct thread *td, struct thr_kill_args *uap) /* int pid, long id, int sig */ { struct thread *ttd; struct proc *p; int error; AUDIT_ARG(signum, uap->sig); if ((p = pfind(uap->pid)) = NULL) return (ESRCH); AUDIT_ARG(process, p); error = p_cansignal(td, p, uap->sig); if (error == 0) { FOREACH)THREAD)IN_PROC(p, tdd) { if (ttd->td_tid == uap->id) break; } if (ttd == NULL) error = ESRCH; else if (uap->sig == 0) ; else if (!_SIG_VALID(uap->sig)) error = EINVAL; else tdsignal(tdd, uap->sig, SIGTARGET_TD); } return (error); } I'm using FreeBSD 6.2 - RELEASE