search for: contexts

Displaying 20 results from an estimated 40216 matches for "contexts".

Did you mean: context
2012 Aug 30
2
[PATCH 01/11] vmci_context.patch: VMCI context list operations.
...t; + +#include "vmci_common_int.h" +#include "vmci_queue_pair.h" +#include "vmci_datagram.h" +#include "vmci_doorbell.h" +#include "vmci_context.h" +#include "vmci_driver.h" +#include "vmci_event.h" + +/* + * List of current VMCI contexts. + */ +static struct { + struct list_head head; + spinlock_t lock; /* Spinlock for context list operations */ + spinlock_t firingLock; /* Spinlock to synchronize notifications */ +} ctx_list; + + +static void ctx_signal_notify(struct vmci_ctx *context) +{ + if (context->n...
2012 Aug 30
2
[PATCH 01/11] vmci_context.patch: VMCI context list operations.
...t; + +#include "vmci_common_int.h" +#include "vmci_queue_pair.h" +#include "vmci_datagram.h" +#include "vmci_doorbell.h" +#include "vmci_context.h" +#include "vmci_driver.h" +#include "vmci_event.h" + +/* + * List of current VMCI contexts. + */ +static struct { + struct list_head head; + spinlock_t lock; /* Spinlock for context list operations */ + spinlock_t firingLock; /* Spinlock to synchronize notifications */ +} ctx_list; + + +static void ctx_signal_notify(struct vmci_ctx *context) +{ + if (context->n...
2010 Apr 11
0
[LLVMdev] Proposal: stack/context switching within a thread
...t, the context switching mechanism itself needs to know >> where to point the stack register when switching.  The C routines take >> an initial stack pointer when creating the context, and keep track of >> it from there.  If we don't actually need to interoperate with >> contexts created from the C routines, we have a lot more freedom. > > I guess the reason to interoperate with contexts from the C routines > would be to support ucontext_t's passed into signal handlers? But then > the LLVM intrinsics need to specify that their context's layout is the &gt...
2010 Apr 11
3
[LLVMdev] Proposal: stack/context switching within a thread
...> As I see it, the context switching mechanism itself needs to know > where to point the stack register when switching.  The C routines take > an initial stack pointer when creating the context, and keep track of > it from there.  If we don't actually need to interoperate with > contexts created from the C routines, we have a lot more freedom. I guess the reason to interoperate with contexts from the C routines would be to support ucontext_t's passed into signal handlers? But then the LLVM intrinsics need to specify that their context's layout is the same as ucontext_t'...
2009 Apr 01
1
SIP Context Confusion
...I am not understanding if I have this correct or not. I have a requirement to allow guests into a PBX from different domains. However, I can not allow the guests into the default context because each domain has its own IVR. So I end up setting the domain context. I also need to provide separate contexts for different sip users (different dial groups). Small system, few users, so it doesn't make sense to create separate Asterisk boxes (cost wise and support) and some of the prompts are similar. Same company, different micro departments and web domains. Should need to either. If I set the us...
2014 Nov 27
0
[Mesa-dev] [RFC] tegra: Initial support
On Thu, Nov 27, 2014 at 11:39 AM, Thierry Reding <thierry.reding at gmail.com> wrote: > Tegra K1 and later use a GPU that can be driven by the Nouveau driver. > But the GPU is a pure render node and has no display engine, hence the > scanout needs to happen on the Tegra display hardware. The GPU and the > display engine each have a separate DRM device node exposed by the >
2005 Jun 14
2
Questions about contexts
I'm trying to clarify contexts and their uses. I do have a good general understanding of them. My question is about "undeclared" and "non-existant" contexts. If I have a block somewhere (in sip.conf, for example), and it has no "context=thiscontext" field, does it just automatically use the "d...
2010 Jun 17
3
FictionBook Editor work problems
I've installed FBE (http://code.google.com/p/fictionbookeditor) in wine then run Code: winetricks msxml4 vcrun2008 ie6 comctl32 but still have many errors in terminal console Code: kontiky at Dolphin:~/.wine/drive_c/Program Files/FictionBook Editor$ ./FBE.exe fixme:ntoskrnl:KeInitializeMutex stub: 0x110fd0, 0 fixme:ntoskrnl:KeInitializeMutex stub: 0x110ff8, 0
2003 Oct 11
2
"context confusion" internal context 2 context only?
I'm trying to create several contexts for extentions with different levels of access to features and I'm wondering how the heck do I include all the contexts so that you can call internal to any extention in another context without giving the features of the higher level context to the lower level context? ie..... [admin] include...
2005 Oct 10
0
Asterisk behaving wierd!!
hello, I have been using asterisk now for about 2 years now on a RH8.0 it is our main call gateway. I have on the box 3 T1 TDM cards connected to 2 Rhino channel banks (FXS) and 1 CAC Access bank I (FXO) with so many softphones and ATA 186s. It has been working good till today some few hours ago. i just discovered that there were no dialtone on the phones. Asterisk did not spit out any error, it
2011 Sep 19
10
Few Questions
First of all, I am very mac illiterate as I have been using windows all my life. I am enquiring to see about getting some help on the whole wine thing. I have been looking at the wiki and FAQs but Im lost. I installed wine from sourceforge but when I go to click wineinstall in the tools folder, this is what I get: Last login: Sun Sep 18 21:31:41 on ttys000
2014 Nov 27
7
[RFC] tegra: Initial support
Tegra K1 and later use a GPU that can be driven by the Nouveau driver. But the GPU is a pure render node and has no display engine, hence the scanout needs to happen on the Tegra display hardware. The GPU and the display engine each have a separate DRM device node exposed by the kernel. To make the setup appear as a single device, this driver instantiates a Nouveau screen with each instance of a
2007 Apr 18
2
[PATCH 3/6] i386 virtualization - Make ldt a desc struct
* zach@vmware.com (zach@vmware.com) wrote: > Make the LDT a desc_struct pointer, since this is what it actually is. I like that plan. > There is code which relies on the fact that LDTs are allocated in page > chunks, and it is both cleaner and more convenient to keep the rather > poorly named "size" variable from the LDT in terms of LDT pages. I noticed it's replaced
2007 Apr 18
2
[PATCH 3/6] i386 virtualization - Make ldt a desc struct
* zach@vmware.com (zach@vmware.com) wrote: > Make the LDT a desc_struct pointer, since this is what it actually is. I like that plan. > There is code which relies on the fact that LDTs are allocated in page > chunks, and it is both cleaner and more convenient to keep the rather > poorly named "size" variable from the LDT in terms of LDT pages. I noticed it's replaced
2010 Apr 07
2
[LLVMdev] Proposal: stack/context switching within a thread
...// Stack and context switching //===----------------------------------------------------------------------===// 4/7/2010 - Initial Revision At the time of this writing, LLVM supports standard function calls on a thread of execution, but does not support switching function contexts or stacks within a thread of execution. Such support would enable creating coroutines, which in turn supports high performance, safer concurrency, and lower overhead than native threads do, and enables concurrency on systems that lack native thread support. Some C library implementations include...
2007 Oct 26
0
8 commits - doc/swfdec-sections.txt libswfdec/swfdec_as_context.c libswfdec/swfdec_as_context.h libswfdec/swfdec_as_interpret.c test/trace
doc/swfdec-sections.txt | 2 libswfdec/swfdec_as_context.c | 54 ++++++++++++++++++- libswfdec/swfdec_as_context.h | 9 ++- libswfdec/swfdec_as_interpret.c | 79 ++++++++++++++-------------- test/trace/Makefile.am | 7 ++ test/trace/try-throw-in-finally-6.swf |binary
2012 Mar 26
7
Lite Manager
Hi there, I'm trying to run Lite Manager on Ubuntu 11.10 using Wine 1.3, but all I get is a "program encountered a serious problem" screen. Any chance that someone could help me with this? :/
2012 Oct 30
4
multi tenant
Hi all, I need to configure DIDs for different companies and they should reach on different extension with different context. Cant we have same extension in different context? This is what we we want Company A: Context Company_A IVR Company A Extensions: 101,102,103,104 etc. Company B: Context Company_B IVR Company B Extensions: 101,102,103,104 etc. Company C: Context Company_C IVR Company
2006 Apr 18
5
Remember the incoming context?
Greetings, Somewhere on my asterisk system, a calls come in in a certain context, for example, from-sip or from-pstn. Then the calls gets routed through the dialplan, and a macro gets called, and another one and then the call needs to be redirected to another number in the same initial context. And you can use Dial(Local/number/initialcontext) for that. Oops, this initial context is lost
2005 Mar 13
5
possible bug in chan_capi concerning context handling
Hello, I am trying to configure asterisk 1.0.7pre to get incoming calls from an ISDN line using an AVM fritz PCI 2.0 with Chan_capi 0.3.5. My problem is that the context is not recognised in the /etc/asterisk/capi.conf I have in /etc/asterisk/capi.conf 's section "[interfaces]" the following directive context=isdn and the following directive in /etc/asterisk/extensions.conf in