On Fri, Aug 18, 2006 at 05:07:16PM +0200, Samuel Thibault wrote:
> Hi,
>
> Richard Braun, le Mon 14 Aug 2006 22:55:15 +0200, a écrit :
> > extern struct task_struct *current_set[NR_CPUS];
> > #define current (0+current_set[smp_processor_id()]) /* Current on this
> > processor */
> > The symbo
Hi,
Richard Braun, le Mon 14 Aug 2006 22:55:15 +0200, a écrit :
> extern struct task_struct *current_set[NR_CPUS];
> #define current (0+current_set[smp_processor_id()]) /* Current on this
> processor */
> The symbol named current_set doesn't exist.
It does on my gnumach:
./linux/src/kernel/
On Mon, Aug 14, 2006 at 11:30:15PM +0200, Jose Luis Alarcon Sanchez wrote:
> If you don't want "deactivate" those parts... Can't you "create" in any
> way a empty symbol named current_set that match with the symbol the
> driver wants?. It this possible?.
That's what I'm currently doing, but I'm no
On Mon, 2006-08-14 at 22:55 +0200, Richard Braun wrote:
> Hello,
>
> I'm trying to get Linux 2.2 sound drivers now, and I'm progressing. But
> there is a symbol I'm unable to handle correctly, which is current_set.
> From dev/include/linux/sched.h:
> extern struct task_struct *current_set[NR_CPUS]