Displaying 20 results from an estimated 200 matches similar to: "Timeout for conferences"
2019 Oct 29
2
[PATCH v2 12/15] drm/amdgpu: Call find_vma under mmap_sem
On 2019-10-28 4:10 p.m., Jason Gunthorpe wrote:
> From: Jason Gunthorpe <jgg at mellanox.com>
>
> find_vma() must be called under the mmap_sem, reorganize this code to
> do the vma check after entering the lock.
>
> Further, fix the unlocked use of struct task_struct's mm, instead use
> the mm from hmm_mirror which has an active mm_grab. Also the mm_grab
> must be
2005 May 15
1
Compile problem on last CVS
Good evening
from the CVS of the 2005/05/14 it's impossible to build asterisk* on a
redhat 7.3
i get this at compile time
chan_sip.c: In function `build_user':
chan_sip.c:10007: parse error before `struct'
chan_sip.c:10029: `userflags' undeclared (first use in this function)
chan_sip.c:10029: (Each undeclared identifier is reported only once
chan_sip.c:10029: for each
2018 Apr 02
1
XDC 2018: Call for Papers
Hello,
I have the pleasure to announce that the X.org Developer Conference 2018
will be held in A Coruña, Spain from September 26th to September 28th.
The venue is located at the Computer Science faculty of the University
of Coruña.
This year, we have created a new website for the event:
https://xdc2018.x.org
And a Twitter account for announcing updates, please follow us!
2008 Apr 22
5
Kickstart network settings problem
I would like one of my kickstart scripts to prompt for disk and
networking only. Commenting out the disk and network settings makes the
installer prompt for disk settings but not for network settings, they
default to DHCP. Any idea's how to fix this?
Thanks
Dean
2009 Mar 18
1
Video phone crashing meetme on asterisk 1.4.
Hello,
I am running asterisk 1.4. For argument's sake I have 4 telephones. 2
support video, 2 do not.
Calls between phones work fine and codecs are properly negociated. I
have videosupport=yes in sip.conf and when the two video phones
communicate I have video.
I call meet me with this command
EXEC MEETME 1234|d
SIP looks like this :
-- AGI Script Executing Application: (MeetMe)
2006 Apr 20
1
MeetMe: lots of buffer overruns/underruns when connecting over IAX
Hello,
Situation: I've got two asterisk 1.2.4 servers, connected to each
other over the internet with IAX2 with about 20msec delay.
One of the servers is hosting MeetMe. It's working fine as long as
only SIP phones connected to the meetme server participate in the
conference. As soon as a participant using IAX2 is connecting, lots
and lots of buffer overruns and underruns are
2004 Jul 01
2
Grandstream HT286 1.0.4.63 & Meetme
Good day!
Have a weird problem with HT-286 and Conference room. I use Asterisk
CVS-HEAD-06/04/04.
Here it is:
When HT-286 get into the conference room first and nobody in that room
everything seems ok (with any codec HT286 allowed), but when HT-286 get
into conference room when somebody already there, have got different HT
behavior:
1. When HT use GSM codec => it connects to conference room,
2005 May 10
2
skype channel
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
I just noticed that the Skype API for linux seems to be available.
I've read before a number of posts where people were talking about
implementing a chan_skype with the skype API.
I wonder if there is any progress in that direction, and if anyone is
working on it.
/B
- --
* GPG-Key: http://evil.gnarf.org/mrbk.pgp
A: Because we read from top to
2011 Jan 11
6
(JOB) Ruby on Rails Developers- Strongmail , Redwood Shores, CA
Ruby on Rails Developers
Dreaming about working on next generation products with a social media
aspect where you get to truly innovate? Stop dreaming and start doing.
As part of a collaborative team working on a 2 week Agile cycle,
you’ll be responsible for development of new modules in our rapidly
expanding product suite - products used by switched on brands to touch
millions of end users.
2019 Oct 28
0
[PATCH v2 12/15] drm/amdgpu: Call find_vma under mmap_sem
From: Jason Gunthorpe <jgg at mellanox.com>
find_vma() must be called under the mmap_sem, reorganize this code to
do the vma check after entering the lock.
Further, fix the unlocked use of struct task_struct's mm, instead use
the mm from hmm_mirror which has an active mm_grab. Also the mm_grab
must be converted to a mm_get before acquiring mmap_sem or calling
find_vma().
Fixes:
2015 Apr 27
4
Inconsistency when naming a vector
Sometimes the absence of a name is maked by an NA:
x <- 1:2
names(x)[[1]] <- "a"
names(x)
# [1] "a" NA
Whereas other times its
y <- c(a = 1, 2)
names(y)
# [1] "a" ""
Is this deliberate? The help for names() is a bit murky, but an
example shows the NA behaviour.
Hadley
--
http://had.co.nz/
2011 Jun 28
13
[PATCH hivex 02/14] maint: remove unnecessary test-before-free
From: Jim Meyering <meyering at redhat.com>
* lib/hivex.c (hivex_node_set_value): Remove unnecessary
test-before-free.
---
lib/hivex.c | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/lib/hivex.c b/lib/hivex.c
index d042f4f..a72fa77 100644
--- a/lib/hivex.c
+++ b/lib/hivex.c
@@ -2748,8 +2748,7 @@ hivex_node_set_value (hive_h *h, hive_node_h node,
leave_partial:
2003 Dec 03
0
Implement missing features in Meetme application
Hi all ( dev & user list ),
I'm starting to implement the missing features in Meetme application :
's' -- send user to admin/user menu if '*' is received
Line 438
-------- app_meetme.c -----------------------------------------------------------------------------
else if ((f->frametype == AST_FRAME_DTMF) && (f->subclass == '*') &&
2004 Aug 05
4
<<< MEETME_AGI_BACKGROUND inside MEET ME>>>
Howdie:
I've been reading some old threads and still have a couple of questions
about applying the AGI_BACKGROUND script inside a Conference. Perhaps
someone can save me a bit of fidd'lin.
Am I right in assuming that the MEETME_AGI_BACKGROUND script **WILL WORK**
on SIP conferenced channels **WITHOUT** an **ACTIVE** zap channel-- AS LONG
AS THERE IS A DIGIUM CARD INSTALLED IN THE
2015 Apr 27
0
Inconsistency when naming a vector
> On 27 Apr 2015, at 13:48 , Hadley Wickham <h.wickham at gmail.com> wrote:
>
> Sometimes the absence of a name is maked by an NA:
>
> x <- 1:2
> names(x)[[1]] <- "a"
> names(x)
> # [1] "a" NA
>
> Whereas other times its
>
> y <- c(a = 1, 2)
> names(y)
> # [1] "a" ""
>
> Is this deliberate?
2016 Mar 24
0
[llvm] r263971 - [llvm-objdump] Printing relocations in executable and shared object files. This partially reverts r215844 by removing test objdump-reloc-shared.test which stated GNU objdump doesn't print relocations, it does.
While trying to fix a bug where llvm-objdump isn't printing relocations retained with ld -emit-relocs in shared object or executables, it seems like there isn't a way to split printing dynamic relocations from non-dynamic relocations as with GNU objdump -r and -R.
I was thinking of adding a function RelocationRef::isDynamic() and filtering them this way when printing.
Since RelocationRef
2003 Aug 27
3
conference authorization
Hello all !
How can I make conference authorization
based on pin number ?
I have:
exten => 1,1,Meetme,1234|ps|2222
where 2222 is a pin number
and this doesn't works
Where do I have to add information about pin number ??
Greetings
Andrzej Radke
2007 May 24
3
meetme sounds
I am playing around with dynamic meetme conferences, and wanted to have
one person constantly in the conference, with calls "popping in and out".
Is there an option / any way of playing enter / leave sounds to the
person who created the conference only, and not the people leaving /
joining ?
TIA
Julian.
2019 Aug 06
0
[PATCH 15/15] amdgpu: remove CONFIG_DRM_AMDGPU_USERPTR
The option is just used to select HMM mirror support and has a very
confusing help text. Just pull in the HMM mirror code by default
instead.
Signed-off-by: Christoph Hellwig <hch at lst.de>
---
drivers/gpu/drm/Kconfig | 2 ++
drivers/gpu/drm/amd/amdgpu/Kconfig | 10 ----------
drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c | 6 ------
2006 Oct 13
1
Asterisk (meetme) and SMP/HT OK?
In the past, there have been reports of problems with Asterisk with
multiple processors and/or HyperThreading.
I'm having a !@#$ of a problem with an HPDL380 with 2 3.4gHz Xeon
processors, 2 gb RAM -- if I got 24 hours I'd think I had died and gone to
heaven :)
Am I missing something obvious like "Asterisk is single CPU, single core?"
I can't access the ILO so I